Hello,
I need to show a total per page in my report, the value is calculated through the event before the printout of the detail band and printed in the page footer. In the text field of my footer page I use the function: Processes in = End of the page, the problem is that the report is showing on the first page the value of the first record of the second page, and I need the total only the first page. Can you help me?
Thank you.
Total per page
-
- Posts: 30
- Joined: Tue Dec 01, 2015 6:19 pm
Total per page
- Attachments
-
- TesteRodape.mrt
- (6.99 KiB) Downloaded 405 times
-
- PageFooter.png (34.53 KiB) Viewed 2363 times
-
- Report.png (13.96 KiB) Viewed 2363 times
Re: Total per page
Hello,
The PageFooter render in start on the page rendering.
In this case, you can try to set the ProcessAt property to the EndOfPage value for the text component.
Thank you.
The PageFooter render in start on the page rendering.
In this case, you can try to set the ProcessAt property to the EndOfPage value for the text component.
Thank you.
-
- Posts: 30
- Joined: Tue Dec 01, 2015 6:19 pm
Re: Total per page
Hello,
According to the above example, my text component already has the function Process in: End of page checked, but it always shows on the first page the first value of the second page.
According to the above example, my text component already has the function Process in: End of page checked, but it always shows on the first page the first value of the second page.
Re: Total per page
Hello.
Please, move your code form the Before Print event to the After Print.
The Before Print event fires at the beginning of the rendering of the band. But during the rendering report engine understands that there is no enough space for this band.
Thank you.
Please, move your code form the Before Print event to the After Print.
The Before Print event fires at the beginning of the rendering of the band. But during the rendering report engine understands that there is no enough space for this band.
Thank you.