Forum Discussion
How do I calculate average Response Time and Resolution Time ?
zenmemo Thank you for replying. Well, I have created the fowllowing two formulaes for my columns in my table:
1) First Response Time(column) = DATEDIFF (Issues[IssueDate],Issues[StartDate],HOUR)
2)Resolution Time (column) = DATEDIFF(Issues[StartDate],Issues[ResolvedDate],HOUR)
The result I am getting is as below, which I believe is wrong compared to the graph(i.e. result posted in my Question)
I am not very sure how can I calculate average response time(in hours) and average resolution(in hours).
What do you think about this -> Average Response time = Toal time taken(in hrs) to send the first response / number of Issues whose first response were sent ? for the selected date period.
Please let me know about your thoughts.
Thank you.
Rck7, is the new chart wrong because the data is summing the column rather than averaging?
- zenmemo8 years agoHelper I
Rck7Now if you're selecting averaging the response/resolution times in conjunction with those measures, that should do it. See sample below. Otherwise, if you attach your file perhaps, I or someonelse can look at what else is causing it.
- Rck78 years agoHelper II
HI zenmemo,
When I use the DATEDIFF function to calculate the Response Time I am getting the result as 0:00 having my Data Format as 13:30(H:mm) as shown in the below images:
Instead, I am using,
1. Response Time = Issues[IssueDate] - Issues[StartDate] for calculating RT values for my column.
2. Resolution Speed = Issues[ResolvedDate] - Issues[StartDate] for calculating RS values for my column.
For calculating Averages, I created the following measures,
Avg RS = CALCULATE(AVERAGE(Issues[Resolution Speed]), ALLSELECTED(Issues[IssueDate]))
Avg RT = CALCULATE(AVERAGE(Issues[Response Time]), ALLSELECTED(Issues[IssueDate]))
The result Graph that I am getting is:
What are your thoughts on it?
Kindly, let me know.
Thanks.