I have a form that has a text box which a user can fill to filter the form. If the text box is left empty, I would like to show all the records. If the text box is filled with a word/phrase, I'd like the result to show records containing the word or phrase in the text box. My criteria in the query isI have used this expression in many queries and it seems to work. However, this particular query is not returning any records that have empty/null when the user does not fill in a value in the text box. Any ideas?Code:Like "*" & [forms]![myForm]![myTextbox] & "*"