How search for text in memo columns?

G

Guest

I have a table containing three memo columns.
User wants to be able to search for records in the table matching on text in
the memo columns.
This should run as quickly as possible.
What is the best technique to use?
 
M

Marshall Barton

mscertified said:
I have a table containing three memo columns.
User wants to be able to search for records in the table matching on text in
the memo columns.
This should run as quickly as possible.
What is the best technique to use?


Try using a criteria something like:

Like "*" & [Enter search text] & "*"

under each of the three memo fields, Make sure that the
three criteria are in different OR rows.

If you are using a form to enter the search text, change the
above criteria:

Like "*" & Forms![name of form].[name of textbox] & "*"
 

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

Top