Forum Discussion
Calculate Ticket SLA
Pinky0404 Hello,
Quick question - How should the final result look like ? Also last 30 days from the (current) today's date ?
Hi ,
Thanks for your response. The output should be bascially a trend with date( i get this from the source file export date) on X- axis and the average no. of days for all open tickets plus no. of days for 30 days closed tickets.
I used the below DAX formulas to get this trend which show an average no. of days for all open and closed tickets.
SC = IFERROR(DATEDIFF(Footprint[Date Submitted],Footprint[Date Closed],DAY),Footprint[SO])
SO = Footprint[RD]- Footprint[Date Submitted]
RD = MAX(Footprint[Date])
SLA(closed) = IF(ISBLANK(Footprint[SC]),Footprint[SO],Footprint[SC])
Hope you are clear now!!
Thanks,
Pinky.