Check Box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I'm using a check box on a form as a parameter within a query:

[Forms]![MyForm]![MyCheckBox]

If the value is -1 (Yes, True, On) the query does not return any records yet
if the value is 0 (No, False, Off) the query returns all records with that
match that value.

Can any one help?
 
It sounds like you are not actually storing -1 values. Create a totals query
with your particular field and count its occurances.
SELECT [YourField], Count(*) as NumOf
FROM tblYourTable;
 

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

Back
Top