Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to create a page total

Report Development

How to create a page total

by  HowardHammerman  Posted    (Edited  )
Creating a Page Total in Crystal

It is strange that a powerful program like Crystal does not have a simple way to calculate a page total. Here is the best way we have found.

Step One: Create a formula field called reset with the following expression:

//reset
WhilePrintingRecords;
shared numbervar total := 0

You can use any name to substitute for the word ætotalÆ.

Step Two: Create a formula field called accum with the following expression:

//accum
WhilePrintingRecords;
shared numbervar total := total + {table.numberfield};

Step Three: Create a formula field call display with the following expression:

//display
WhilePrintingRecords;
Shared numbervar total;
Total

Place the formula field reset in the page header. Right-click on it, pick ôformatö and then pick the common tab. Pick ôsuppressö.

Place the formula field accum in the details section. Right-click on it, pick ôformatö and then pick the common tab. Pick ôsuppressö.

Place the formula field display in the page footer. Position and format it as required.

That is it!




Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top