J
jtertin
I have a combo box on a form with values 1-5. I want the value of
this combo box to be used in a form later on, but I need it
concatenated into a query as this simplified example shows:
SELECT ...
FROM ...
WHERE Line&'[Forms]![MyForm]![MyComboBox]'&=True
You can see that I am trying to concatenate the current value of the
combo box to the word LINE (i.e. Line1, Line2, Line3...) which refers
to a boolean column in my database.
this combo box to be used in a form later on, but I need it
concatenated into a query as this simplified example shows:
SELECT ...
FROM ...
WHERE Line&'[Forms]![MyForm]![MyComboBox]'&=True
You can see that I am trying to concatenate the current value of the
combo box to the word LINE (i.e. Line1, Line2, Line3...) which refers
to a boolean column in my database.