Check box result in query

Gemma Khan

Registered User.
Local time
Today, 04:31
Joined
Jun 29, 2009
Messages
13
Hi,
I am making of inventory system, am facing some problem in query designing.
I made one check box on the Form.
If user check the box then record will save otherwise not.
My problem is How to set the criteria so that the Query will look at only the checkbox items from the table before printing.
Any help
 
WHERE [CheckboxFieldName] will do it.

Because it is a boolean field this is the same as:
[CheckboxFieldName]= True

(though Access seems to prefer to represent it as <> False)
 

Users who are viewing this thread

Back
Top Bottom