How to get Access Reports to sum several columns of numbers?

D

DToburen

I'm trying to get Access Reports to provide a sum at the bottom of each of
several columns.
 
D

Duane Hookom

Add text boxes to the report footer with control sources like:
=Sum([NumericFieldName])
 
Top