A awake2424 Registered User. Local time Today, 15:21 Joined Oct 31, 2007 Messages 479 Aug 23, 2013 #1 In an Access 2010 query is it possible to set a criteria on a field (Results), that If it is "Negative" then another field (Variants) has the text "None Detected". Or is it easier to do that in the Variants field? Thank you.
In an Access 2010 query is it possible to set a criteria on a field (Results), that If it is "Negative" then another field (Variants) has the text "None Detected". Or is it easier to do that in the Variants field? Thank you.
pr2-eugin Super Moderator Local time Today, 21:21 Joined Nov 30, 2011 Messages 8,487 Aug 23, 2013 #2 Do it in the Variants field.. Something like.. Code: VariantFieldName: IIF(Result < 0, "None Detected", "Whatever")
Do it in the Variants field.. Something like.. Code: VariantFieldName: IIF(Result < 0, "None Detected", "Whatever")