I'm not getting an error. The issue I am having is if I try to use my form to
run my query and one of the combo boxes is left blank the query won't pull
anything at all. But if all the boxes have a parameter chosen the query will
run. I have searched the properties of each box to change them so its
reflected they are not required however I am unable to find that option.
Please help...
It's nothing to do with the combo box's properties (well, you could set the
Default Value if that would help, but it probably wouldn't).
Try using a criterion of
= [Forms]![FormName]![combo] OR [Forms]![FormName]![combo] IS NULL
This will search for the user's entry, if there is one, and ignore the combo
if there isn't.