I have a combo box that lists out, say, 4 option values, and a check box beside it to enable/disable the combo box. Then I have a query run on a table based on the option chosen in the combo box. However, if the check box is not clicked , i.e., the combo box is not enabled in the first place, then I want the query to return the complete set of data, i.e., with all 4 options included. I used the "iif" function to say "iif(check1=-1, [ComboBox1], xxxx)", what should that xxxx be? I tried all kinds of things such as "IsNotNull" but nothing worked. Any ideas?