ok, so i have a form with unbound check boxes on it, i want to alter a query criteria based on the check boxes values,so i have this as an example of my query criteria:
SS 1 is the check box I'm trying to evaluate.>0 is what i want the query criteria to be if the box is checked, Null is the value i want the criteria to be if the box is unchecked.
The statement i have now runs, but returns no results.
Code:
IIf([Forms]![frm_Reports Credit]![SS 1]=True,>0,Null)
The statement i have now runs, but returns no results.
Comment