Query criteria list box however if blank looks for "" not *

Wonderer

Registered User.
Local time
Today, 00:12
Joined
Sep 12, 2001
Messages
16
List box is used to run Query however if the list box is not selected then the query uses "" ...i need it to use * or ISNOTNULL i have been trying the following but having no luck can anyone guide me in the correct way

IIf(IsNull([Forms]![Menu]![List4]),"*",[Forms]![Menu]![List4])

Thanks in advance

Rob
 
Try this...

Like Nz([forms]![Menu]![List4] & "*")
 
Many thanks that worked a treat

Regards

Rob:)
 

Users who are viewing this thread

Back
Top Bottom