redspanna
Well-known Member
- Joined
- Jul 27, 2005
- Messages
- 1,604
- Office Version
- 365
- Platform
- Windows
Hi all,
I have the following code within my VB to filter fields 2 & 5 as shown
I want to add a thrid filter to same range that will filter field 1 to the date that populates cell A13 in 'Daily Total' sheet
I had this code
but can't seem to get it to work
any help / ideas
many thanks
I have the following code within my VB to filter fields 2 & 5 as shown
Code:
ActiveSheet.Range("$A$2:$O$517").AutoFilter Field:=2, Criteria1:="T5"
ActiveSheet.Range("$A$2:$O$517").AutoFilter Field:=4, Criteria1:="=arr", _
Operator:=xlOr, Criteria2:="="
I want to add a thrid filter to same range that will filter field 1 to the date that populates cell A13 in 'Daily Total' sheet
I had this code
Code:
ActiveSheet.Range("$A$2:$O$517").AutoFilter Field:=1, Criteria1:=Sheets("Daily Total").Range("A13").Value
any help / ideas
many thanks
Last edited: