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])
 

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