Count Check Box

M

mandy84angel

I have a form (F1) which has a section that lists three check boxes (EL,
Admin, Other). On another form (F2), is it possible to count how many of
those three checkboxes are checked on all records in F1?

In F1, there is another checkbox (Corrected) which I would also like to
count how many records are checked on F2 in a separate textbox.

Thank you for your time!
 
W

Wayne-I-M

Create an unbound text box with this as the source
in the forms footer or header

=Sum(IIf([EL]=-1,1,0))+Sum(IIf([Admin]=-1,1,0))+Sum(IIf([Other]=-1,1,0))
 

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