Access this solution immediately by signing up as a member of CrystalReportsExperts.com--it’s quick, easy, and secure. We will return you to this solution, unlocked, when you’re done.
I know the solution for this to effect just one Group Summary Field is as follows:
To sum a summary you need to use manual summaries
In the report header add a formula
WhilePrintingRecords;
Global NumberVar MyTotal := 0;
''
In the section where you display the summary
WhilePrintingRecords;
Global NumberVar MyTotal;
MyTotal := MyTotal + {summaryFormula);
''
To display
WhilePrintingRecords;
Global NumberVar MyTotal;
MyTotal
But how to I differenciate/modify or create a second one of these formulas to work independently for a second group summary field that I want to sum in the report footer?
Access this solution immediately by signing up as a member of CrystalReportsExperts.com--it’s quick, easy, and secure. We will return you to this solution, unlocked, when you’re done.
mlmcc
301,594
Wizard
0 points yesterday
ProfileJames0628
62,776
Master
0 points yesterday
ProfileLinInDenver
4,800
0 points yesterday
Profilepeter57r
4,000
0 points yesterday
Profile13598
3,520
0 points yesterday
ProfilePCIIain
1,700
0 points yesterday
ProfileRickIsWright
400
0 points yesterday
ProfileDan3D
300
0 points yesterday
Profile
Posted on 2010-09-11 at 19:32:18ID: 34646755
All comments and solutions are available to Premium Service Members only. Sign up to view the solution to this question. Already a member? Log in to view this solution.