How do I make a wildcard search but have it smarter if you get what I am saying.
The code for my wildcard search is:
But how I want to make my search smarter is like this:
When I type Unity in my search it comes up with Whatever Community Hospital, with the word 'unity' within 'community'. What I want the search to do is for the user just to type in Unity and Unity Hospital is found.
Thank you for your help.
The code for my wildcard search is:
Code:
If Not IsNull(Me.txtSearchCompany) Then
strWhere = strWhere & "([Company] LIKE ""*" & Me.txtSearchCompany & "*"") AND "
End If
But how I want to make my search smarter is like this:
When I type Unity in my search it comes up with Whatever Community Hospital, with the word 'unity' within 'community'. What I want the search to do is for the user just to type in Unity and Unity Hospital is found.
Thank you for your help.
Last edited: