how to bring the sum of previous page ...

Stimulsoft Reports.NET discussion
Post Reply
dandelion65
Posts: 1
Joined: Sat Oct 10, 2009 12:56 am
Location: iran

how to bring the sum of previous page ...

Post by dandelion65 »

In our Project we need to bring the sum of previous page at the first row of the next page . How can I do this ?Is it possible ?
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

how to bring the sum of previous page ...

Post by Edward »

Hi

Please see the following event handlers and properties in the attached report:

PageHeader1.AfterPrint:
S=0;

DataBand1.BeforePrint:
S+=1;

FooterBand1.PrintOnAllPages = true;

Run Demo.exe sample application which comes with a standard installation of Stimulsoft Reports.Net, press 'Design' and open the report there.

S - it is a variable, defined in the Dictionary.

Thank you.
Attachments
246.SumOfThePreviousPageInTheNextPage.mrt
(17.58 KiB) Downloaded 177 times
Post Reply