Count Yes answers

  • Thread starter Thread starter BR
  • Start date Start date
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
 
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.
 
Back
Top