Hello everyone,
I have a query that returns some results based on user input in form.
The field in query is text .
In the criteria of this query I have tried the following:
1.
Code:
Like Nz([Forms]![SearchForm]![txt];"*")
2.
Code:
Like "*"&[Forms]![SearchForm]![txt]&"*"
3.
Code:
Like [Forms]![SearchForm]![txt]&"*"
The field in the query contains blank values.
So whatever I tried I get only the records where the field in the query has values.
Is there another way to display all values and only the specified when user searches?
thank you in advance