Search various fields using a keyword in Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to set up a search option that will allow my users to search various
fields for a specific word, and return all records which contain that word.
Is there any way to do this? It is one table containing the details of many
documents within a library.
 
On Fri, 15 Apr 2005 08:43:02 -0700, "Donna O" <Donna
I want to set up a search option that will allow my users to search various
fields for a specific word, and return all records which contain that word.
Is there any way to do this? It is one table containing the details of many
documents within a library.

You can use a Query with OR logic: to set this up in the query grid,
put

LIKE "*" & [Enter keyword:] & "*"

on the criteria line under each field that you want to search, on
*separate* lines in the query grid.

However, the need to search multiple fields makes me suspicious that
your tables may not be properly normalized. What is the structure of
your table? How many fields? What are some of the fieldnames that you
will want to search?

John W. Vinson[MVP]
 

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

Similar Threads

Conditional formatting on a Keyword 1
Fastest methods for text searching. 6
Search utility 2
multiple keyword search 4
Searching linked Documents 2
keyword 2
keyword table 2
Keyword Search 1

Back
Top