Wild Card in Autofilter

stapuff

Well-known Member
Joined
Feb 19, 2004
Messages
1,126
I am using a wild card in the section of autofilter code below. This works well but I need to change it from --> Criteria1:="=Z*" to all Z* except ZW. How can this be done still using the wild card or will I need to specify through multiple filters ZA:ZV & ZX:ZZ keeping just ZW?

Thanks,

Kurt


Set rng = Range("A1:K" & Range("A5000").End(xlUp).Row)
rng.AutoFilter Field:=1, Criteria1:="=Z*"
On Error Resume Next
With rng
rng.Offset(1, 0).SpecialCells(xlCellTypeVisible).EntireRow.Delete
End With
Err.Clear
ActiveSheet.AutoFilterMode = False
Set rng = Nothing
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Add a second criteria.
Code:
rng.AutoFilter Field:=1, Criteria1:="=Z*", Operator:=xlAnd, _
        Criteria2:="<>ZW"
 
Upvote 0
Norie -

Thanks for pointing that out. I and tried the second criteria - I used xlor not and. Thanks again for the post.

Kurt
 
Upvote 0

Forum statistics

Threads
1,214,973
Messages
6,122,534
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top