How can I sum several different fields in an Access report?

  • Thread starter Thread starter dahlia
  • Start date Start date
D

dahlia

Can I sum values from more than one field in an Access report? If so, how
can I do so?
 
Sure can - if the fields are in the detail section. In the report footer,
or a group footer, place an unbound textbox and set its controlsource to an
expression such as:
=Sum([Field1]) + Sum([Field2])

If the control is in a group footer, it will give the sum for that group
only; if it's in the report footer, it will give the overall sum.

HTH,

Rob
 
Back
Top