show all rows containing a date between x and y?
Try this in your macro
Selection.AutoFilter Field:=1, Criteria1:="<date",
Operator:=xlAnd
Selection.AutoFilter Field:=2, Criteria1:="date",
Operator:=xlAnd
where the criteria will relate to a textbox1...
i.e.
criteria1:=<textbox1
may work!!!
Neo
|