Forum Discussion
Anonymous
4 years agoNot applicable
Count less than 90%
Hello, how to count Name of handler that scored less than 90% It returns a boolean.
- 4 years ago
Hi, Anonymous
Measure:
Quality<90 = CALCULATE ( COUNT ( 'US RAW'[Name of Handler] ), FILTER ( ALL ( 'US RAW' ), [Quality Rating Score] < 0.9 ) )Based on the sample data you provided, is it what you expected to get such a result?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-zhangti
4 years agoCommunity Support
Hi, Anonymous
Measure:
Quality<90 =
CALCULATE (
COUNT ( 'US RAW'[Name of Handler] ),
FILTER ( ALL ( 'US RAW' ), [Quality Rating Score] < 0.9 )
)
Based on the sample data you provided, is it what you expected to get such a result?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous4 years agoNot applicable
Ayee thanks! Works like magic.