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.
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.
Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.