Search Text for words

G

Gary F Shelton

I have a list of descriptions that have the word TRAX or CROSS in them at
random. I want to only return the records that have this in the text. How do
I write a query to return these records?
 
J

Jeff Boyce

Gary

Open a new query. Add the table. Add the fields of interest

In the Selection Criterion under the [description] field, use something like
(untested):

Like * & "TRAX" & * or Like * & "CROSS" & *

Good luck!

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
M

Marshall Barton

Gary said:
I have a list of descriptions that have the word TRAX or CROSS in them at
random. I want to only return the records that have this in the text. How do
I write a query to return these records?


Set the field's criteria to something like:
Like "*TRAX*" OR Like "*CROSS*"
 

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