Search box on form

  • Thread starter Thread starter David Smouts via AccessMonster.com
  • Start date Start date
D

David Smouts via AccessMonster.com

Hello,

I need a search box on my form that works like this:

When I search "US" it gives me the result below:

Name Alias City Country
-----------------------------
Jack Ja NY US
US int UI PAR FR
Ursula US PAR FR
Test Te GUS UR

It needs to search in different fields with wildcards.

Is this possible?

Thanks.
 
David,

If you are using the query design view, put the equivalent of...
Like "*" & [Forms]![YourForm]![YourTextbox] & "*"
.... into the criteria of the query design grid, on a different row of
the grid for each of the fields it applies to.
 
Thanks Steve,

This was what I was looking for.

David
 

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

Back
Top