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)
Vercel Mongo Integration
Click continue Press “I Acknowledge” Multiselect vercel projects Click “ “Connect and ...
-
http://www.sommarskog.se/share_data.html How to Share Data Between Stored Procedures An SQL text by Erland Sommarskog, SQL Server MVP. M...
-
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...
No comments:
Post a Comment