Yes/No Field. Need a total count the Total Yes's on a report

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

Guest

I have a report - where I have a yes/no field. I can total the number of
records
no sweat - but I need to total the number of records that are "Y".
 
I have a report - where I have a yes/no field. I can total the number of
records
no sweat - but I need to total the number of records that are "Y".

In the report, add an unbound text control.
Set it's control source to:
=Abs(Sum([CheckBoxField]))
 
Back
Top