to show subreport's page footer in main report

  • Thread starter Thread starter Pascal.H
  • Start date Start date
P

Pascal.H

main report (reportMain) has 2 different subreports in it.
subreport_A and subreport_B.
how can I show these 2 subreport's page footer in reportMain.
 
Subreports have no Page sections. You should be able to reference values of
controls in the subreport's Report Footer from a control on the main report
with syntax like:
=subrptCtrlName.Report.txtNameOfCtrlOnSubreport
 
Back
Top