How do I simply display totals in an Access report?

D

Dan

All I want to display in my report are totals from a number of columns. I do
not want any other information shown. How can this be done?
 
D

Duane Hookom

Add text boxes to your report footer with control sources like:
=Sum([Column A])
Set the visible property of every other section to No.
 
Top