I have a form where I am hoping that i can type in keywords into a text box which will then run a query that finds these key words from the data field.
For example: The user types "car license" into the text box, the query will then search the descriptions field and displays all descriptions that contain "car license" i.e "I have my car license" but not "I have a car and i have a license".
So far i have tried setting the Criteria using the Like command to pull the value entered in the text box. I tried including the asterixs so that the text can be contained any where within the description.
Criteria: Like "*[Forms]![Applicants]![KeywordTextbox]*"
Is this possible and am i on the right track, What should my Criteria be? Cheers.