combo-box query

awake2424

Registered User.
Local time
Today, 14:55
Joined
Oct 31, 2007
Messages
479
If I have a combobox (Result) that has two values in it, positive and negative. Is it possible to have a code in a query that has some text in it but also the combo-box selection?

Example: Result is "Negative"

The test revealed a "Negative" detection. Thank you.
 
Maybe something like:
Expr1:"The test revealed a " & [YourFieldName] & " detection
 
you mentioned a query so to extend bob's suggestion:

"The test revealed a " & forms!yourformname!yourfieldname & " detection"
 

Users who are viewing this thread

Back
Top Bottom