I am running a query with Like "*" in the criteria and the query returns everything except the records with a null value in that field. Am I missing something? I thought that Like "*" should return everything.
Replace this:
Like [Forms]![Report Date - 99]![text16]
with this:
Like [Forms]![Report Date - 99]![text16] OR [Forms]![Report Date - 99]![text16] Is Null
And this:
=IIf(IsNull([Combo8]),"*",[Combo8])
with this:
=[Combo8]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.