Sum All Field

E

Erika

I have a report that lists each person and the number of scans that they did
on any given range of days. The current calculation is =Sum([#ofimages])

At the end of the report I would like to see a total for everyone, how do I
build this calculation?
 
O

Ofer Cohen

On the Report Footer create a text box and use the same Sum

=Sum([FieldName])

If you want to add more then one field
=Sum([FieldName] + [FieldName2])

Or
=Sum([FieldName]) + Sum([FieldName2])

Note: the field name should be the name of the fields in the table, and not
the names of the text boxes in the report
 
Top