Excel filter options

S

support

I want to be able to do multiple search on a column but i don't want
to be restricted to the exact description. ( "York City" or
"Jersey State" or "New Jersey State")
Exp: Column 5
" New York City"
"New York State"
"New Jersey City"
"New Jersey State"

maybe if i can use "And" between words or even a " + " sign.
like: "New + State" or "New + City"
Please help!!!!
thank you
---------------------------------------------------------------------------------
Private Sub Worksheet_Change(ByVal Target As Range)

If Target.Cells.Count > 1 Then Exit Sub
If Intersect(Target, Me.Range("A4")) Is Nothing Then Exit Sub
If Me.AutoFilterMode = False Then Exit Sub

If Me.FilterMode = True Then
Me.ShowAllData
End If

If Trim(Target.Value) = "" Then Exit Sub 'after clearing filter.

Me.AutoFilter.Range.AutoFilter _
Field:=21, Criteria1:="*" & Target.Value & "*"
-------------------------------------------------------------------------------
 
S

support

Hi Support,

Consider usingExcel'sAdvancedFiltertool.

See Debra Dalgleish at:

Excel-- Filters -- AdvancedFilter-- Complex Criteria
http://www.contextures.com/xladvfilter02.html

Yes i did thank you
i was able to work around it with using wild cards " * "
its not exactly what i wanted but it works.
Exp:
"New * City"

but the only reason why i am able to used is because its in order
Exp:
"New * City" = Correct

"City * New" = Not Correct

let me know if you have any ideas on what i should do.

thank you
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top