Summing Info in Subreports

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do you sum the information in a field of one subreport and the information of the same field in another subreport
Example: Subrep 1
NumCo


Subrep 2
NumCo

I want total NumCom to equal 6.
 
JohnV said:
How do you sum the information in a field of one subreport and the information of the same field in another subreport?
Example: Subrep 1:
NumCom
1
3
Subrep 2:
NumCom
2
I want total NumCom to equal 6.


Use a text box in each subreport's Report Footer section
with the expression =Sum(NumCom)

Then in the main report and in the same section as the
subreports, use a text box with an expresison like:

=subrep1.Report.total1 + subrep2.total2
 
Back
Top