How do I select records were a field contains a key word??

O

OldManEd

I have a field named [Comments], a text field. I want to create a query that
selects records that contain the word "Not" somewhere (anywhere) in the
field. Is this possible?

OldEd
 
R

Rick Brandt

OldManEd said:
I have a field named [Comments], a text field. I want to create a
query that selects records that contain the word "Not" somewhere
(anywhere) in the field. Is this possible?

OldEd

....
WHERE Comments Like "* not *"
 
O

OldManEd

Thanks, that worked. I was missing the "*"s
Ed.

Rick Brandt said:
OldManEd said:
I have a field named [Comments], a text field. I want to create a
query that selects records that contain the word "Not" somewhere
(anywhere) in the field. Is this possible?

OldEd

...
WHERE Comments Like "* not *"
 
Top