Sum in Reports.

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

Guest

I would like to calculate the sum of a column in a report and display it in
the report itself. How do I do that?
Thanks
 
If you are summing for the entire report, create a text box in the report
footer to hold the sum of the column. The Control source of the text box
should be Sum([ColumnTextBoxName])

[ColumnTextBoxName] should be the name of the text box that has the values
you want to sum.
 
Back
Top