how to sum the field

J

Jw

hi,

i made a report but i do not know how to show the total in the column field
(e.g amount)

please help
thanks
jimmy
 
J

Jeff Boyce

Jimmy

One approach is to use a header or footer band (assuming you have rows in
the detail section you want to sum up). Add an unbound control in the
header or footer for the section you want to sum over. Use something like
the following as a Control Source (your syntax may vary):

=Sum([YourAmountField])
 
Top