How to put a sum at the end of data?

  • Thread starter Thread starter Min
  • Start date Start date
M

Min

Hi, I want to know, at the end of listed data, I need a sum to show total,
The data shoould be:
No. Data
1 3
2 5
3 2
Sum 10

How to do this in a report?

Thanks!
 
Min,
If [Data] ia a bound field, a text control in the Report Footer with a
ControlSource of...
=Sum([Data])
will give you a total for the whole report.

Also, in any Group Footer, it will yield the total for that Group.

hth
Al Camp
 
Back
Top