Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CR XI - formula to calculate average

Status
Not open for further replies.

campia

Technical User
Apr 20, 2007
77
BE
Hi,

I need to calculate the average of time spend on the tickets with priority="very high" per month.
In my db I have the fields: creation date and solved date.

How can I do this formula?
 
Are you grouping on your report? On Priority or on what?

Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports

"If you have a big enough dictionary, just about everything is a word"
--Dave Barry
 
Group by month, on one or other date. Do a pair of running totals, summing the number of cases and the time spent on cases with priority="very high" and re-setting for each month.

In the month-group footer, divide the sum by the count.

You could also do it by grouping 'very high' cases within the month.

For finding 'time spend', use
Code:
DateDiff ("d", {date1},  {date2})
That assumes you are counting days. For 'hours', use "h" rather than "d".

PS. It helps to give your Crystal version - 8, 8.5, 9, 10, 11 or whatever. Methods sometimes change between versions, and higher versions have extra options.

[yinyang] Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10 [yinyang]
 
I think you could use one running total that does an average of {@timespent}, using Madawc's datediff formula, with an evaluation formula:

{table.status} = "High Priority"

Reset on change of group (date, monthly). The runnign total belongs in the group footer.

-LB
 
ok it works but in my formula "solved - creation" I count Saturday and Sunday too.
How can I avoid it?
 
I found the solution:

formula: average
{table.Solved Date} - {table.Creation Date}


formule: real_average --> avoid saturdays and sundays

dim cpt
formula = {@average}
for cpt = 1 to {@average}
if weekday({table.Creation Date}+cpt,2)>5 Then
formula=formula - 1
end if
next

thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top