Forum Discussion
Anonymous
8 years agoNot applicable
SLA % Measures
Hi all I've got a SLA column with "Breached", "Within" and "No Target". I need to work out the % "Within" based on the SLA column ("Within" and "Breached") . Anyone know how I can achieve this? ...
- 8 years ago
Hi Anonymous,
To achieve your requirement, you can try a measure with following expression:
SLA % = CALCULATE ( COUNT ( SLA[SLA] ), FILTER ( SLA, SLA[SLA] = "Breached" ) ) / CALCULATE ( COUNT ( SLA[SLA] ), FILTER ( SLA, SLA[SLA] <> "No Target" ) )Thanks,
Xi Jin.
v-xjiin-msft
Solution Sage
8 years agoHi Anonymous,
To achieve your requirement, you can try a measure with following expression:
SLA % =
CALCULATE ( COUNT ( SLA[SLA] ), FILTER ( SLA, SLA[SLA] = "Breached" ) )
/ CALCULATE ( COUNT ( SLA[SLA] ), FILTER ( SLA, SLA[SLA] <> "No Target" ) )
Thanks,
Xi Jin.
Anonymous
8 years agoNot applicable
My friend, is working. Thankfull.
Best Regards.