I have a selectin window for a report that if nothing is entered for the field, all records will be displayed in the report. The query I've created is as follow:
IIf(IsNull([forms].[fmVSSelection].[VendorService ID]),Like "*",[forms].[fmVSSelection].[VendorService ID])
However it doesn't work when the field is left blank.
I've also tried:
IIf([forms].[fmVSSelection].[VendorService ID] is null,Like "*",[forms].[fmVSSelection].[VendorService ID])
Neither does this work.
What should I do?
Thanks in advance for helping.
IIf(IsNull([forms].[fmVSSelection].[VendorService ID]),Like "*",[forms].[fmVSSelection].[VendorService ID])
However it doesn't work when the field is left blank.
I've also tried:
IIf([forms].[fmVSSelection].[VendorService ID] is null,Like "*",[forms].[fmVSSelection].[VendorService ID])
Neither does this work.
What should I do?
Thanks in advance for helping.