The form I've created is used for inputting new company information. The best way I could think of to list products that the company would use was to create a check box field (around 10 of them). The result is 10 fields of True/False data in my Table.
I was thinking it should work fine if I could query the table based on the Field that corresponds to the selected combobox value, so something like:
Code:
SELECT frmCom.[Company Name]
FROM tblCom
WHERE (((tblCom.[Forms]![frmCom]![comboProduct])=True));
Obviously this is incorrect due to lack of knowledge of how to form this argument, but is this idea possible?

Originally Posted by
June7
Don't understand why checkboxes are unbound.
What you want will not be easy with the Yes/No field structure. Really need a junction table that associates companies with products, like:
CompanyID (foreign key)
ProductID (foreign key)
Then sounds like you need dependent (cascading) combo or list boxes that use the junction table as RowSource. Review:
http://datapigtechnologies.com/flash...combobox2.html