Counting totals for weekly reports

  • Thread starter Thread starter rb
  • Start date Start date
R

rb

I've got a report which prints off student absences, I'd like to print off a
total for the number of absences in the week, and a total for the number of
students who are absent, I've done this for the monthly report but when I set
the student code to count in the design view for the weekly report it still
counts each student individually instead of totalling the absences.
 
Add a footer for the weekly grouping on the report and set the controlsource
to:

= Sum([Absences])

or whatever the Absence field name is.
 
Back
Top