Counting multiple Yes/No fields

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

Guest

I have a table w/ multiple yes/no fields (i.e. pass roadtest?, pass written
test?). I want to a tally the yes'. How do I do that in a query or report.
Thx, Dj
 
Write an expression that gives 1 for Yes, 0 for no and sums them:

Expr1: IIf([passRoadTest]="Y",1,0) + IIf([passWrittenTest] = "Y",1,0) etc.
 

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