Link to home
Start Free TrialLog in
Avatar of wshcraft70
wshcraft70Flag for United States of America

asked on

Crystal Reports with summary and sub-footer (continuation assistance required)

Currently:

However, Initially, I was instructed to calculate the average talk time..  However, what I really need is the TOTAL AVG TALK TIME for the ENTIRE group..

So I currently I'm able to calculate the avg on the change of each group..

But I need it to provide to AVG of the groups in the Footer..

Also, I don't want to display the details and just the footer.  How can I do this?  When suppresseing because I'm "WHILEPRINTINGRECORDS" everything goes to zero..  :(

Group Header:

WhilePrintingRecords;
Shared NumberVar RecCount;
Shared NumberVar DurationTotal;
RecCount := 0;
DurationTotal := 0;

Sub Report:

whileprintingrecords;
shared numbervar RecCount;
shared numbervar DurationTotal;
Local NumberVar CallDuration;

if({CallDetail.InternalNum})  >= 600 and ({CallDetail.InternalNum}) <700 then
     CallDuration := {CallDetail.Duration}
else
    CallDuration := 0;
if CallDuration > 0 then
  RecCount := RecCount + 1;
DurationTotal := DurationTotal + CallDuration;
CallDuration


Group Footer:


WhilePrintingRecords;
Shared NumberVar RecCount;
Shared NumberVar DurationTotal;

If RecCount = 0 then
    0
Else
   DurationTotal / RecCount;
ASKER CERTIFIED SOLUTION
Avatar of James0628
James0628

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of wshcraft70

ASKER

Yes, moving the formulas from one footer to the other get me ALL THE TIME..  I worked that part out..  However, thank you VERY much for the information about suppressing the SR..  When I was suppressing the entire section, you're right, the SR was not running thus no details.  So doing it in the order of events above did the trick..  Much thanks!!
Avatar of James0628
James0628

You're welcome.  Glad I could help.

 James