Hello,
I have a form named [Search] it has several unbound textboxes with the name property set to this method[qfield] each textbox default value is "".
I have a button that will open a report once clicked. The report RecordSource is a query [qrySearch].
The query has several fields each with this Criteria:
My problem is if a value in a record is null, it does not return in my search. I need it to return records with nulls as long as all the other requirements are met.
How do I have my query include records with null values if no other criteria is set?
Thanks for any help/advice you can provide!
I have a form named [Search] it has several unbound textboxes with the name property set to this method[qfield] each textbox default value is "".
I have a button that will open a report once clicked. The report RecordSource is a query [qrySearch].
The query has several fields each with this Criteria:
Code:
Like [Forms]![Search].[qfield] & "*"[
How do I have my query include records with null values if no other criteria is set?
Thanks for any help/advice you can provide!
Comment