What if I try querying a different field in the database based on the value selected from the combo box in the form - is this possible?
SELECT tblCom.[Company Name]
FROM tblCom
WHERE (((tblCom.[Forms]![frmCom]![cmboProduct])=True));
This doesnt work, but could this work in a different way?
Thanks:) Actually I went through that post during my searches and while it did put me in a step toward the right direction (reference search string & list box creation), I am still completely lost as to how to handle the multiple checkbox values :(
Hello! :) I'm not very familiar with access, but I know it can do what I want - just need to figure out how.
Okay, here's the question:
I have a table of data regarding companies (contact info, etc). The company I work for provides these companies with up to 10 different products. On my...