I m trying to write the following SQL statement in VBA:
SELECT ID,Product,Size FROM Products
Where Product ='A' AND Size = '1'
I want to use the values from combobox 1(cmb1) for 'A' and combobox 2(cmb2) for '1'
I know how to code it without the AND Operator like this:
"SELECT ID,Product,Size...