finding text with query

G

gardnertj

I have several records that contain the word "box" in the text. How do I
pull all the records that contain that word?
 
P

PC Datasheet

Create a query that contains your text field and any other fields you need
to return. Put the following expression in the criteria of the text field:
Like "*" & "Box" & "*"
 
Top