a checkbox in a query

G

Guest

i'm wanting to set the user specify if a checkbox is checked or not in a
query, but i'm unsure how to do this. any ideas? the field that has a
checkbox is called "Cleared" and is part of a table called "Data" by the way.

thanks.
 
M

[MVP] S.Clark

A checkbox is typically bound to a Yes/No field, which can have, typically,
one of two values. It will be True or False.

So,

SELECT * FROM TableName where [FieldName]
or
SELECT * FROM TableName where NOT [FieldName]

Other than that, I don't understand your sentence.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top