finding text with query

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

Guest

I have several records that contain the word "box" in the text. How do I
pull all the records that contain that word?
 
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" & "*"
 
Back
Top