I have an unbound drop down list form item, which I am using to query the data. The User can either choose Debit or Credit or leave the option blank.
This criteria works perfectly ([Forms]![form name]![form field]), but only if the user chooses one of the options. If they leave this field blank no records are returned, whereas I want all records to be returned.
I have tried:
IIf ([Forms]![form name]![form field]is null, like "*", [Forms]![form name]![form field]) as the criteria in the query but this gives the same result as above
Any Ideas?
This criteria works perfectly ([Forms]![form name]![form field]), but only if the user chooses one of the options. If they leave this field blank no records are returned, whereas I want all records to be returned.
I have tried:
IIf ([Forms]![form name]![form field]is null, like "*", [Forms]![form name]![form field]) as the criteria in the query but this gives the same result as above
Any Ideas?