Hi All,
Today, without any main changes in my Workbook, I found out that one of my option doesn't work.
My function is filtering database basing on values from Data Validation, that's part of my code:
After that, all rows are hidded. When I'll click on filtered Column 11 -> Data Filters -> Between... my values are there. When I click OK it works, filtering like supposed to.
Don't know what happened, but my Workbook, even after creating different macros with set-up values to filter is not accepting macros to filter properly.
Do you know what could be the source of the issue?
Today, without any main changes in my Workbook, I found out that one of my option doesn't work.
My function is filtering database basing on values from Data Validation, that's part of my code:
Code:
...
If Worksheets("MENU").CheckBoxes("CheckBox1").Value = 1 Then
Dim lngStart As Range, lngEnd As Range
Set lngStart = Worksheets("MENU").Range("I17")
Set lngEnd = Worksheets("MENU").Range("K17")
If Worksheets("MENU").Range("H11").Value = "Inbound" Then
Worksheets("INBOUND").Range("$A$1:$Y$2000").AutoFilter Field:=11, _
Criteria1:=">=" & lngStart, _
Operator:=xlAnd, _
Criteria2:="<=" & lngEnd
...
Don't know what happened, but my Workbook, even after creating different macros with set-up values to filter is not accepting macros to filter properly.
Do you know what could be the source of the issue?
Last edited: