Hello,
This is my first post and I'm kinda new to access.
i have a search form that have a few combo boxes that a user will input values and these values are passed to a query that will show the query results on a subform. I have this one combo box which will only contain 3 values and if the user leaves the combo box blank, all records will show up.
my query parameter looks something like this:
Like "*" & [Form]![Something] & "*"
and the combo box contains 3 values, lets just say "A","B", and "C".
I want to create a check box that if this is unchecked, and the combo box is blank, this will show "A" or "B". If the check box is checked, and the combo box is blank, this will show all records ("A", "B",and "C").
I can't figure out whether to do this in the form design or query parameters.