Getting Query Field Total Into Report

S

stillcrazee

Have a field (column) in a query, and I need to have the total of that
field be a "Grand Total" (report footer) in a report.
 
D

Debra Farnham

Hi stillcrazee

Put a textbox in your report footer

Set the controlsource to:

=sum([nameoffieldtosum])

That should do it

Debra
 
Top