cgmojoco
Well-known Member
- Joined
- Jan 15, 2005
- Messages
- 699
I tried this code to filter more than one or statement, without any luck:
Is there a way to add more than two criteria?
Code:
Sub Macro3()
'
' Macro3 Macro
' Macro recorded 12/5/2005 by Mitchell Employee
'
'
Range("E1").Select
Selection.AutoFilter
Selection.AutoFilter Field:=5, Criteria1:="=MITCHELLRX", Operator:=xlOr, _
Criteria2:="=MITCHELLFL", Operator:=xlOr, _
Criteria3:="=MITCHELL"
End Sub
Is there a way to add more than two criteria?