how to put total for page footer in crystal reports

Question:

I have designed a report in crystal report 8.5. report is in 3 pages. there is a amount field. I want to have a total of that at the end of the page. how do I do that

Solution:

You need to total for that page

In the page header add a formula
WhilePrintingRecords;
Global NumberVar  pageTotal;
pageTotal := 0;

In the detail section add a formula to do the total
WhilePrintingRecords;
Global NumberVar  pageTotal;
pageTotal := pageTotal + {YOurField};

In the page footer
WhilePrintingRecords;
Global NumberVar  pageTotal;
pageTotal

mlmcc

digg delicious stumbleupon technorati Google live facebook Sphinn Mixx newsvine reddit yahoomyweb
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...