E
Eli the Iceman
Does anyone knows how to insert a parameter in MS Access Query that will show
all records is a combobox in a form has the field equal to some text, example
"ALL" and then if not show records equal to combobox value? I tried all kind
of way, but to no success. I can get it to work with null, but not with some
other value. Here is what I did already:
IIF([Forms]![formname]![combo1] like "ALL", is null,
[Forms]![formname]![combo1])
IIF([Forms]![formname]![combo1] like "ALL", "", [Forms]![formname]![combo1])
IIF([Forms]![formname]![combo1] like "ALL", "*", [Forms]![formname]![combo1])
and many more,
Thanks,
all records is a combobox in a form has the field equal to some text, example
"ALL" and then if not show records equal to combobox value? I tried all kind
of way, but to no success. I can get it to work with null, but not with some
other value. Here is what I did already:
IIF([Forms]![formname]![combo1] like "ALL", is null,
[Forms]![formname]![combo1])
IIF([Forms]![formname]![combo1] like "ALL", "", [Forms]![formname]![combo1])
IIF([Forms]![formname]![combo1] like "ALL", "*", [Forms]![formname]![combo1])
and many more,
Thanks,