http://www.tek-tips.com/faqs.cfm?fid=1295
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!
Subscribe to:
Post Comments (Atom)
How to check local and global angular versions
Use the command ng version (or ng v ) to find the version of Angular CLI in the current folder. Run it outside of the Angular project, to f...
-
Most of the google tutorials on keras do not show how to display a confusion matrix for the solution. A confusion matrix can throw a clear l...
-
This error means you have created the DbContext but not configured/added it to the project using either DI in startup.cs or by using DbCon...
-
This happens when you dont define primary key for an entity type. Define a primary key either explicitly or implicitly.
No comments:
Post a Comment