Wild card name searching help

gomes.

Registered User.
Local time
Today, 14:45
Joined
Feb 14, 2008
Messages
27
How would I make a query find a person like this:

Inputted Data: Smit
Outputted Data: Smith, Smithy etc..

The formula I have entered in the criteria of my query is:
Like [Enter the person's last name]

With this formula, if I type Smith, then the data that comes out is Smith. But if I type in smit or smi, Smith doesnt come out.

Thanks.
 
You haven't used the wildcard, though.

Like [Enter the person's last name] & "*"
 
Trey this;
Like [Enter the person's last name] & "*"
 
Snap!

Actually, an alternative is to use a combo box in a form. Part of the standard functionality of a combo is that it zooms to a value as you type.
 

Users who are viewing this thread

Back
Top Bottom