Hi All,
i am looking for a vba that could do below criteria at the same time, can some one point me out?
first:
and finally i would like to filter column Y base on sheet2 E49 and column AB base on sheet 2 E50
thank you very much for your help
i am looking for a vba that could do below criteria at the same time, can some one point me out?
first:
VBA Code:
Sub Macro3()
'
' Macro3 Macro
'
'
Sheets("data").Select
Rows("1:1").Select
Selection.AutoFilter
With Range("a1:ab1")
.AutoFilter Field:=4, Criteria1:="*pickup*"
.AutoFilter Field:=5, Criteria1:="xlFilterToday"
End With
and finally i would like to filter column Y base on sheet2 E49 and column AB base on sheet 2 E50
thank you very much for your help