Counting Checkboxes

  • Thread starter Thread starter Max
  • Start date Start date
M

Max

Hello,

I have a report that calculates outstanding records.

I am calculating =(Count([To A/E])-(Count([From A/E]))- (
Count([Inhouse only]))). The [Inhouse only] is a check
box and I want to subtract only those records that are
checked.

I tried - Count([Inhouse only]="-1"))), but nothing.

Any ideas. Many many thanks in advance.
Max
 
Try:
=(Count([To A/E])-(Count([From A/E]))- ( Sum(Abs([Inhouse only]))))
 

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