Totals

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

Guest

I have a report that is grouped by type and it counts the number of entries
for each type. I need to be able to total the numbers that come back. How
do I do this?
 
I believe you can do that in code or the control source of a text box:

= Entries1+Entries2+Entries3 etc...
 
SarahJ said:
I have a report that is grouped by type and it counts the number of entries
for each type. I need to be able to total the numbers that come back. How
do I do this?


A report footer text box with the expression
=Count(*)
will count the number of records in the report.
 
Back
Top