count the nulls in a report calculation

  • Thread starter Thread starter Rose
  • Start date Start date
R

Rose

What is input into the label boxes to all count those fields within a
grouping that a blank. The Category is RSVPDate
 
I think you mean text boxes rather than label boxes. To count the number of
records in a report section where the RSVPDate is null, you add a text box
in the Group Header or Footer with a control source of:
=Sum(Abs(IsNull(RSVPDate)))
 
Back
Top