Hi Everyone,
I am having issues with an expression in a form. I have two combo boxes in my form named ComboA and ComboB. What I am trying to do is sort the list of ComboB by a selection in ComboA. If no value is given for ComboA, I would like the criteria to be left blank so I pull all values. I will list a few things I have tried below. Thank you for your help.
IIF([ComboA] = "", "", [ComboA])
IIF([ComboA] is not null, [ComboA], "")