Hi folks, so some background first. I have an review database built to review our teams quality when taking calls and emails. I have 1 main database table and 1 main form for both review types. The first Dropdown box lets the reviewer select "Call" or "Email". I then have a Category and a Sub Category, duplicated 5 times just in case multiple errors are made in the same category. The Category and Subcategory are currently using a simple VBA script for the cascading combobox.
My Problem: the set of categories and subcategories are different for call and email. I'd like to set up the Category Combobox to be a cascading combobox that works off of the Audit type, "Call" or "Email". So, if a user selects Email, the Category Boxes (the boxes (all 5) will all display the same selection options) will update to only show the Email options. This sounds simple but i get stuck where we have the possibility of issuing 5 of the same category errors. If I only had 1 category box option i'd be fine, but I have 5. I was only able to figure out how to trigger the After Update event to 1 of the 5 category boxes. How do I get all 5 category boxes tied to the Audit Type After Update event?
CB-Audit Type Call or Email CB-Category#1 7 options CB-Detail#1 options vary CB-Category#2 7 options, same as #1 CB-Detail#2 Options Vary, same as #1 CB-Category#3 7 options, same as #1&2 CB-Detail#3 Options vary, same as #1&2
thanks