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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top