G
Guest
Thanks for taking the time to read my question.
I have 5 combo boxes, all with a Query/Table as a rowsource.
There is only one field(Category). This is a list of all the expense
categories.
I would like to limit each one based on the values of the others.
If combobox1 = Food
then
combobox? can have every other category except for Food.
I can do this if none of the other combo boxes are Null, but if they are, it
doesn't work.
How do I get around this?
I have a table with the Categories in it (3 fields: AutoID, Category,
CategoryDescription) The Rowsource is:
SELECT tblCategory.Category FROM tblCategory ORDER BY tblCategory.Category;
What do I add to this to limit it if other comboboxes have values in them,
but not limit it if the other comboboxes are null.
Thanks so much for your help,
Brad
I have 5 combo boxes, all with a Query/Table as a rowsource.
There is only one field(Category). This is a list of all the expense
categories.
I would like to limit each one based on the values of the others.
If combobox1 = Food
then
combobox? can have every other category except for Food.
I can do this if none of the other combo boxes are Null, but if they are, it
doesn't work.
How do I get around this?
I have a table with the Categories in it (3 fields: AutoID, Category,
CategoryDescription) The Rowsource is:
SELECT tblCategory.Category FROM tblCategory ORDER BY tblCategory.Category;
What do I add to this to limit it if other comboboxes have values in them,
but not limit it if the other comboboxes are null.
Thanks so much for your help,
Brad