Report Design
 Crystal Reports Forum : Crystal Reports 9 through 2022 : Report Design
Message Icon Topic: Summerized Totals Post Reply Post New Topic
Author Message
joep
Newbie
Newbie


Joined: 14 Jan 2009
Location: United States
Online Status: Offline
Posts: 10
Quote joep Replybullet Topic: Summerized Totals
    Posted: 19 Jan 2009 at 7:04am

Hi,

This formula is adding summerized totals on the same group (as a running total) but my problem is that I need the summerized totals to be added in the report footer(and not as a running total but as individual).
 
example.
 
5        6      4 (detail group)
5        6      4
5        6      4
15     18    12 (summerized totals to show in report footer)
 
I have dragged this formula into the report footer but it only takes the total of one summerized total and not all 5 of them. Here is the formula.
 
shared numberVar totinc := totinc + Sum ({CLAIMANT_COVERAGE_FIN.TOTAL_INCURRED}, {CLAIM.CLAIM_NUMBER})
 
Any help with this problem will be greatly appreciated.
 
Thanks
Joe Smile 
IP IP Logged
AntDC
Groupie
Groupie
Avatar

Joined: 23 Dec 2008
Online Status: Offline
Posts: 76
Quote AntDC Replybullet Posted: 19 Jan 2009 at 8:34am
You could use an array I suppose.

You could get funky and make use of the GroupNum function.
Have a formula field that iterates through the array and creates a string representation of what you want.

fMyStr := '';
FOr i := 0 to Length(MyArray) do
(
fMyStr := fMyStr + '   ' + ToText( MyArray( i ) )
);
fMyStr;

Not the most elegant but with some tweeks, could work.

HTH

DC

IP IP Logged
DBlank
Moderator
Moderator


Joined: 19 Dec 2008
Online Status: Offline
Posts: 9053
Quote DBlank Replybullet Posted: 19 Jan 2009 at 9:12am
Joe,
If I understand you correctly you just want to display sum totals for each fields in the group footer.
If this is correct just insert a Summary as a SUM in the report footer for each field.
If these fields need to be conditionally summed use more running totals per field that is not reset placed at report footer with whaterver your condition is for counting.
5        6      4 (these are running totals at group footer?)
5        6      4
5        6      4
15     18    12 (summary Fields as SUM at Report footer)
Is this what you are trying to accomplish?
IP IP Logged
joep
Newbie
Newbie


Joined: 14 Jan 2009
Location: United States
Online Status: Offline
Posts: 10
Quote joep Replybullet Posted: 19 Jan 2009 at 11:32am

D Blank,

Thank you very much your idea has solved my problem.
Joe
IP IP Logged
Post Reply Post New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You cannot vote in polls in this forum



This page was generated in 0.014 seconds.