I have a form and a list box what is filter with the criteria when the user is selecting from Combo Boxes.
And the record source from the list box is a query so i want to filter the query
I have used this code in query designer
Like " * " & [Forms]![Costumers]![PB_City] & " * "
in order to get partial text from the table
but it don't show a record if the field is blank.
The code Like " * " & [Forms]![AnyForm]![AnyThing] & " * "
leave out the Blank records
as I like to use the query designer
I wonder what's the exact syntax for the SQL or how to work in the query designer
to get this work done as well