I am trying to solve a problem with my DB. I have multiple communities and those communities have some unique vendors they use. I have a identifier field in Communities_Table called "Type_Field". The field gives the users 3 options "Type1", "Type2", "Type3". It does NOT allow for multiple selections. Then in my Vendors_Table there is a field called "VendorType_Field" which DOES allow multiple selections of "Type1", "Type2" and "Type3".
In a form, the user selects the Community and the Vendor. I want the vendor combo box to only show the vendors that have a type that is allowed for that community. I assume the Vendor_ComboBox needs to driven off of a query that gets filtered when the "Community_Field" is updated but I'm not sure how to filter a query on the multi-select field in the Vendors_Table. Any advice?
I'm an intermediate user on Access and a beginner on VBA.
Thanks!