Forum Discussion
Anonymous
2 years agoNot applicable
Turnaround Time
I'm looking to calculate average turnaround time in my dataset but need help in adding a criteria to only calculate based off a distinct column called (Request Description) My turnaround time form...
- 2 years ago
Anonymous , Try using below mentioned method
AverageTurnaroundTime =
VAR DistinctRequests = DISTINCT('Tracker'[Request Description])
RETURN
AVERAGEX(
DistinctRequests,
CALCULATE(
DATEDIFF('Tracker'[Request Received On], 'Tracker'[Completed Date], DAY)
)
)Please accept as solution and give kudos if it helps
bhanu_gautam
2 years agoSuper User
Anonymous , Try using below mentioned method
AverageTurnaroundTime =
VAR DistinctRequests = DISTINCT('Tracker'[Request Description])
RETURN
AVERAGEX(
DistinctRequests,
CALCULATE(
DATEDIFF('Tracker'[Request Received On], 'Tracker'[Completed Date], DAY)
)
)
Please accept as solution and give kudos if it helps
- Anonymous2 years agoNot applicable
Thank you so much!