Forum Discussion
Count Results from a Measure
- 4 years ago
Hi Peleias ,
You need to create a separate table that contains all the status values.
Then use the measure.
Count_ = COUNTROWS ( FILTER ( VALUES ( 'Table'[Column] ), [Result from a Measure] = MAX ( 'Status'[Value] ) ) )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Peleias ,
You need to create a separate table that contains all the status values.
Then use the measure.
Count_ =
COUNTROWS (
FILTER (
VALUES ( 'Table'[Column] ),
[Result from a Measure] = MAX ( 'Status'[Value] )
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-kkf-msft Thank you!
Perfect answer!
I had reached another conclusion but without being able to connect with the table. However I asked another question, I'll put that you answered the 2.