Forum Discussion
Calculating whether a service level has been met
- Anonymous9 years ago
OK, I found the flaws in my logic. My previous formula ignored row context all over the place. This version gives the results I was attempting before. I don't know if this will work in DirectQuery though, because it includes SUMMARIZE and ADDCOLUMNS. You might be able to get around that if you go into Options and check the box marked "Allow unrestricted measures in DirectQuery Mode."
Pass/Fail = IF( HASONEVALUE(Parts[Part Type]), VAR target = MIN(Parts[Target SLA]) / 100 VAR passfail = ADDCOLUMNS( SUMMARIZE( Parts, Parts[RowID] ), "pass", CALCULATE(MIN(Parts[Lead Time Achieved]) <= MIN(Parts[Lead Time Target])) ) RETURN IF( DIVIDE( COUNTROWS(FILTER(passfail, [pass] = TRUE)), COUNTROWS(passfail) ) >= target, "Pass", "Fail" ), VAR partscores = SUMMARIZE( Parts, Parts[Part Type], "score", VAR tg = CALCULATE(MIN(Parts[Target SLA])) / 100 RETURN IF( DIVIDE( CALCULATE( COUNTROWS( FILTER( ADDCOLUMNS( Parts, "pass", CALCULATE(MIN(Parts[Lead Time Achieved]) <= MIN(Parts[Lead Time Target])) ), [pass] = TRUE ) ) ), CALCULATE(COUNTROWS(Parts)) ) >= tg, "Pass", "Fail" ) ) RETURN FORMAT( DIVIDE( CALCULATE( DISTINCTCOUNT(Parts[Part Type]), FILTER(partscores, [score] = "Pass") ), DISTINCTCOUNT(Parts[Part Type]) ), "0%" ) & " Passed" )
It's Friday afternoon. Time to get really goofy.
This version returns the expected Pass/Fail score for each Part Type. But on any total/subtotal lines that represent multiple part types, it returns the percent of represented parts that passed overall:
Pass/Fail = VAR passfail = ADDCOLUMNS( SUMMARIZE( Parts, Parts[RowID] ), "pass", CALCULATE(MIN(Parts[Lead Time Achieved]) <= MIN(Parts[Lead Time Target])) ) RETURN IF( HASONEVALUE(Parts[Part Type]), VAR target = MIN(Parts[Target SLA]) / 100 RETURN IF( DIVIDE( COUNTROWS(FILTER(passfail, [pass] = TRUE)), COUNTROWS(passfail) ) >= target, "Pass", "Fail" ), VAR partscores = SUMMARIZE( Parts, Parts[Part Type], "score", VAR target = MIN(Parts[Target SLA]) / 100 RETURN IF( DIVIDE( COUNTROWS(FILTER(passfail, [pass] = TRUE)), COUNTROWS(passfail) ) >= target, "Pass", "Fail" ) ) RETURN FORMAT( DIVIDE( CALCULATE( DISTINCTCOUNT(Parts[Part Type]), FILTER(partscores, [score] = "Pass") ), DISTINCTCOUNT(Parts[Part Type]) ), "0%" ) & " Passed" )
This is close, although if I set the Target SLA to 49 for P1, it calculates 50% overall where it should be 100% (50>49, 75>74)
- Anonymous9 years agoNot applicable
Oops, yeah I've done some more testing and it was just a coincidence that the right answer was what it produced. Basically it's counting all "pass" values rather than using Part Type as a filtering context in the subtotal. I'll have to rework this a little...
- Sean9 years ago
Community Champion
with P1 set at 49%
- Andy_Chandler9 years agoFrequent Visitor
Sean I'm happy with being able to measure this part by part, where I'm struggling is with an overall fail if any one of the indivdual part types fails.
- Sean9 years ago
Community Champion
Okay the only way I can quickly think of to do this is with calculated COLUMNS!
Again start with Yes/No all these are COLUMNS!
1)
Yes/No = IF ('Table1'[Lead Time Achieved]<='Table1'[Lead Time Target], "Yes", "No")2)
Part Rate COLUMN = DIVIDE ( CALCULATE ( COUNTROWS ( FILTER ( Table1, Table1[Yes/No] = "Yes" ) ), ALLEXCEPT ( Table1, Table1[Part Type] ) ), CALCULATE ( COUNTROWS ( Table1 ), ALLEXCEPT ( Table1, Table1[Part Type] ) ), 0 )3)
Pass/Fail COLUMN = IF ( Table1[Part Rate COLUMN] > Table1[Target SLA], "Success", "Fail" )
4)
AND Then create this MEASURE
Pass/Fail TEST = IF ( COUNTROWS ( FILTER ( Table1, Table1[Pass/Fail COLUMN] = "Fail" ) ) > 0, "Fail", "Success" )