Microsoft Access Reports

M

Marshall Barton

Mike said:
How do I add up numbers in a column in Microsoft Access Report?


Add a text box to the REPORT footer section and set its
control source expression to:

=Sum(nameoffieldtoaddup)

where the name of the field to add up is a field in the
report's record source table/query. It can not be the name
of a control in the report.
 
Top