Query Based upon Chack Box

C

Chris T

I have a form incorporating check boxes. I want to create a query to print
the rows of the associated table depending whether the check box status is on
or off.
 
D

Duane Hookom

A field bound to a check box will store either -1 for checked or 0 for
unchecked.
 
R

Ron2006

It can also be tested for by setting the criteria as


True (the -1 value)

or

False (the 0 value)

Ron
 
Top