Hi all

I have four sheets with data table, they all follow the same format, on the 7th column is the date.

Now I have already used Macro to apply filter and chose "Last week" as the data range for all four sheets.

I want to put up a interface on the first sheet where you can input start date and end date and hit go, which then filter column 7 on all sheets according to the date range specified.

I looked around and found people use Macro inputbox, but it seems you have to start the macro first for it to work. And also you can't see the data range you put in after the filtering.

So I thought I could use cells like J1 on sheet1 as start date input cell, K1 on sheet1 as end date input cell, and write a macro to update the date range. Below is the code I wrote, sheet1 is "DCA - More than 10c"


Sub Daterange()


Sheets("DCA - More than 10c").Select
ActiveSheet.Range("$A$1:$H$100000").AutoFilter Field:=7, Criteria1:=">=" & Range("J1"), Operator:=xlAnd, Criteria2:="<=" & Range("K1")

Sheets("DCA - Less than 4c").Select
ActiveSheet.Range("$A$1:$H$100000").AutoFilter Field:=7, Criteria1:=">=" & Sheets("DCA - More than 10c").Range("J1"), Operator:=xlAnd, Criteria2:="<=" & Sheets("DCA - More than 10c").Range("K1")

Sheets("BULK - More than 10c").Select
ActiveSheet.Range("$A$1:$H$100000").AutoFilter Field:=7, Criteria1:=">=" & Sheets("DCA - More than 10c").Range("J1"), Operator:=xlAnd, Criteria2:="<=" & Sheets("DCA - More than 10c").Range("K1")

Sheets("BULK - Less than 4c").Select
ActiveSheet.Range("$A$1:$H$100000").AutoFilter Field:=7, Criteria1:=">=" & Sheets("DCA - More than 10c").Range("J1"), Operator:=xlAnd, Criteria2:="<=" & Sheets("DCA - More than 10c").Range("K1")

End Sub


All four data table became empty after running the macro like there is no data within the specified date range. Could anyone tell me what went wrong?

Thank you very much.