Forum Discussion
SLA Achivement Calculation
- 6 years ago
Hi SergioHB ,
Is this what you want? This is my PBIX file.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi SergioHB ,
Is this what you want? This is my PBIX file.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- SergioHB6 years agoHelper I
Hi Icey
Thanks so much for helping on this. Apparently it's working as I expected but just a couple of measures are not calculating on my side. They are:
- Achieved Resolution
- Achieved Response
with the following message: "A single value for column 'ClosedDate' in table 'Case' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result.."
Any idea?
- Icey6 years agoCommunity Support
Hi SergioHB ,
You can create the two measures like so:
Achieved Response Measure = IF ( ISBLANK ( MAX ( 'Table'[Initial_Response] ) ), BLANK (), 1 )
Achieved Resolution Measure = IF ( ISBLANK ( MAX ( 'Table'[ClosedDate] ) ), BLANK (), 1 )
In the pbix file I shared before, these two are columns.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- SergioHB6 years agoHelper I
Thank Icey ,
I'll check this along the day but looks fine to me. Only one last question.
The column 'Closed' is just counting cases from the period, but what if the cases were created in the past and closed now?
Example:
In September there are 150 cases logged and from those 140 closed, so 10 pending. That does not mean that in September only 140 cases are closed, there can be closed cases from past months (previous backlog). There can be more closed than logged cases.
Do you get my point? I don't think this has been taken in consideration when you define the 'Closed' column.
Thanks