Syntax Question

  • Thread starter Thread starter Joe Cilinceon
  • Start date Start date
J

Joe Cilinceon

I have a report made up of several subreports. I'm trying to add a fields in
another subreport with a field in the current subreport. Below is the code
I'm using with the first part being the current report.

=Sum([Payment Amount]) + Reports!rsubDeposits!TotalBankDepositGrandTotalSum
 
Joe said:
I have a report made up of several subreports. I'm trying to add a fields in
another subreport with a field in the current subreport. Below is the code
I'm using with the first part being the current report.

=Sum([Payment Amount]) + Reports!rsubDeposits!TotalBankDepositGrandTotalSum


You have to go through the subreport **control** on the main
report to get to a control in the subreport.

Reports!mainreport.subreportcontrol.REPORT.textboxinsubreport

Don't confuse the subreport control anme with the name of
the report object it is displaying. They may or may not be
the same.
 
Back
Top