is it possible?: show similar matches as one string

machumpion

Registered User.
Local time
Today, 13:47
Joined
May 26, 2016
Messages
93
Let's say I have a customer table. When I query multiple names using wildcards, I'd like to group the matches together rather than show each distinct match.

i.e. criteria:"*Jim*" or "*Bob*"

Result: Jimmy, Jimbo, Jimmo, Bob, Bobby, Bobo

Desired Result: Jim, Bob

Is such a thing possible?
 
no, records are individual, then so are the results.
it could be done with a bunch of vb programming.
 
Maybe something like:

Code:
Like "John"  Or Like "* John" Or Like "John *" Or Like "* John *"

if that's what you mean.

You could probably create a function to do this for you.
 

Users who are viewing this thread

Back
Top Bottom