how to put total for page footer in crystal reports
April 16th, 2010 |
|
0 Comments »
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













Comments (0)
Trackbacks - Pingbacks (0)
Leave a Reply