Count Yes answers

B

BR

Not sure how to do this.
I have a table/form with 9 yes/no questions.
I would like to be able count the total number of yes answers per record, as
well as a cumulative count for each question.
Example questions each being yes/no
ContactSupervisor
ContactTech
ContactPager

Thanks in Advance
 
D

Duane Hookom

It seems your table is not normalized. However to count yes values across a
record, use and expression like:
TotalYes: Abs(FieldA) + Abs(FieldB) + Abs(FieldC)...
You can total these in a report section.
 

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