Add totals to report column

  • Thread starter Thread starter rbkading
  • Start date Start date
R

rbkading

I would like total several columns on a report when it is
run. It has parameters set to run and I want each column
to total individually. How do I do this?
 
Rbkading,

If I understand you correctly, for each field you want the total for,
put an unbound textbox in the Report Footer section of the report, and
set its Control Source property to the equivalent of...
=Sum([NameOfYourField])
 
Back
Top