Hi all,
I am working on a report that will tell me the time taken to respond to a helpdesk call. I want to produce a pie chart that tells our client if we have met our target of a 2 hour response time. The response time is not necessarily when the call was resolved or closed but an indication that we responded to the client's request within the timeframe.
I have a date logged field, but the response time is derived from the activity table, where it's liklely to contain multiple activities for the call. I just want to check on the first activity as this will be the initial response/activity for that call.
I have created a formula that works out the difference in minutes
@responsetime datediff ("n",{event.datelogged}, {action_date})
I have another formula that returns a true or false if the time returned is under 2 hours:
@init_sla_met if {@responsetime} < 120 then true else false
I want the datediff formula to only check the first activity not any subsequeqent activites. How do I do that?
Also I have been looking at Ken Harmady's page to combine the business hours/working hours formula into my report, how would I do this? also am a bit confused as to what fields to use for the start and end dates. I can use event.datelogged as the start date, but what of the end date?
Many thanks in advance
I am working on a report that will tell me the time taken to respond to a helpdesk call. I want to produce a pie chart that tells our client if we have met our target of a 2 hour response time. The response time is not necessarily when the call was resolved or closed but an indication that we responded to the client's request within the timeframe.
I have a date logged field, but the response time is derived from the activity table, where it's liklely to contain multiple activities for the call. I just want to check on the first activity as this will be the initial response/activity for that call.
I have created a formula that works out the difference in minutes
@responsetime datediff ("n",{event.datelogged}, {action_date})
I have another formula that returns a true or false if the time returned is under 2 hours:
@init_sla_met if {@responsetime} < 120 then true else false
I want the datediff formula to only check the first activity not any subsequeqent activites. How do I do that?
Also I have been looking at Ken Harmady's page to combine the business hours/working hours formula into my report, how would I do this? also am a bit confused as to what fields to use for the start and end dates. I can use event.datelogged as the start date, but what of the end date?
Many thanks in advance