G
Guest
Using XL 2003 & 97
Currently the code below works fine. It selects values equal to or greater
than 20000 but less than 38999.
Cells.AutoFilter Field:=3, Criteria1:=">=20000", Operator:=xlAnd, _
Criteria2:="<38999"
Range("A1").Select
...... (copy paste routine)
What is the most efficient syntax to convert the above code to handle:
">=20000 and =<35000"
AND
">=35500 and <38999"
TIA
Dennis
Currently the code below works fine. It selects values equal to or greater
than 20000 but less than 38999.
Cells.AutoFilter Field:=3, Criteria1:=">=20000", Operator:=xlAnd, _
Criteria2:="<38999"
Range("A1").Select
...... (copy paste routine)
What is the most efficient syntax to convert the above code to handle:
">=20000 and =<35000"
AND
">=35500 and <38999"
TIA
Dennis