How to do calculations with fields calculated in subreports

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

Guest

I have a report with 8 subreports. Each subreport calculates totals. I need
at the end of the main report to make a final calculation with the
"subreports totals". Can anyone help me out please?

Saludos!
 
Eiby said:
I have a report with 8 subreports. Each subreport calculates totals. I need
at the end of the main report to make a final calculation with the
"subreports totals".

Assuming that each of the subreports only appears once in
the main report, you can use a text box expression like:

=subreport1.Report.total1 + subreport2.Report.total2 + ...

where subreportX is the name of the subreport **control** on
the main report and totalX is the name of the text box in
the subreport with its total.
 
Back
Top