Sum in Reports.

F

FC

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
 
K

Klatuu

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.
 
Top