Calculating a total in a report

Y

Yvonne

I have one column that I would like the grand total to print in the footer
section of the report. Can you tell me the correct expression to use and if
I can do this in report design view?
 
D

Duane Hookom

Add a text box to the Report Footer section and set its control source to
something like:

=Sum([YourColumnName])
 
Top