Query Yes/No

D

Douglas J. Steele

Sorry, but no. Since it's a numeric value, you need to compare it to a
number (0), not a string ("0").
 
J

John W. Vinson

On Fri, 12 Jun 2009 11:38:01 -0700, Katie S <Katie
How do I query so that only No answers are returned?

Use a query with a criterion of 0 (just the number zero), or its allowed
synonym, False (just the word False with no quotes).

Yes is -1 or you can use True.
 
Top