Queries with Check boxes?

Cwire

Registered User.
Local time
Today, 14:04
Joined
Mar 30, 2015
Messages
10
I am very new to Access and was wondering if it is possible to create a Query where in I have the following:

If I have a checkbox in a form, and if that check box is checked can it be queried to find all records in which a checkbox is checked? I don't know if that is possible or I have to create some sort of macro or if I can just tell the query to find all the boxes that are checked as apposed to those that aren't.
 
a checkbox is either true or false so you can have a query
Code:
SELECT *
FROM myTable
WHERE yesnofield=forms!myform!mycheckbox
 

Users who are viewing this thread

Back
Top Bottom