Summing in report footer

tomc

Registered User.
Local time
Today, 21:40
Joined
Jul 27, 2000
Messages
40
In a report footer I would like to sum on two different fields and then combine those sums. Here is what I have done:

Field1: =Sum([Documents]) e.g 25
Field2: =Sum([Pages]) e.g. 125

Then I want to do a Field3 which is the sum of Documents + Pages e.g. 150.

I can't quite get the syntax figured out for the calculated FIeld3.

Thanks in advance!

Tom
 
=Sum([Documents]) + Sum([Pages])

???
kh
 
Or = [Textbox1]+ [Textbox2]
 
Thanks, guys, worked like a charm. Just had a brain freeze.

Tom
 

Users who are viewing this thread

Back
Top Bottom