Refer field in SubReport which is in Report Footer

radek225

Registered User.
Local time
Yesterday, 23:42
Joined
Apr 4, 2013
Messages
307
I want to refer field "plyty_sa" which is in "RaportZleceniaRobocze" Report, in "RaportRobocze_Offset" SubReport. The problem is that, SubReport is in Report Footer. I tried many possibilities but I can't find solution.
Please guys help!
 
As far as I know, Report Formatting and Printing is happening page by page from the beginning of the Report. Printing of Sub-Report at the Main Report Footer starts printing only after printing other Sections of the main Report and before finishing the main report footer printing.

You can address a control of the sub-report(s) and transfer it's value into a text control, on the footer section of the main Report, like:

Code:
=[SubReport].Report![controlname]

If you have several sub-reports on a main report and want to create summary of all sub-reports you can do that on the Footer of the main report using the above method, like:

Code:
=[SubReport-1].Report![controlname]+[SubReport-2].Report![controlname]
 

Users who are viewing this thread

Back
Top Bottom