Calculating a total in a report

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

Guest

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?
 
Add a text box to the Report Footer section and set its control source to
something like:

=Sum([YourColumnName])
 
Back
Top