Counting and summing records in a report

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

Guest

I would like a count of all the records in a report as well as a sum of the
amounts in a given field of the record. An average as well. Thanks.
 
In the footer section of your report, add three textboxes. Set their
ControlSource properties respectively to the following expressions:

=Count(*)

=Sum([Amount Field])

=Avg([Amount Field])
 
Back
Top