Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Grand total in report

Status
Not open for further replies.

5556

Programmer
May 27, 2003
17
0
0
US
I have a number of text boxes with values in them in the detail section of my report. How can I get a grand total of all the rows of the report at the bottom of the report?
 
In a footer section (report footer if you don't need any group totals) you can add text boxes that work in one of two ways. For totaling columns that are based on recordsource fields you simply set the total control source to '=sum(FieldName). If columns are calculated values then you need to create invisible copies of them (with running totals set) in your detail section and refer to them in the control source of your associated total text boxes in the footer section.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top