MisterBeee
New Member
- Joined
- May 3, 2018
- Messages
- 1
Hey guys, I'm new to using VBA, but I now know autofilter will only allow 2 sets of criteria for searching, and will not work w/wildcards (*). Here's the array function I tried to use that obviously didn't work.
ActiveSheet.Range("$A$10").CurrentRegion.AutoFilter Field:=2, Criteria1:= _
Array("1.3.0704.*", "1.4.0704.*", "1.4.0753.*", "1.4.0755.*"), Operator:=xlFilterValues
Can someone help me with the right code that will allow me to use wildcards to filter on multiple criteria? Thanks.
ActiveSheet.Range("$A$10").CurrentRegion.AutoFilter Field:=2, Criteria1:= _
Array("1.3.0704.*", "1.4.0704.*", "1.4.0753.*", "1.4.0755.*"), Operator:=xlFilterValues
Can someone help me with the right code that will allow me to use wildcards to filter on multiple criteria? Thanks.