Forum Discussion
Anonymous
4 years agoNot applicable
Filter on measure
Hey everyone, Is there a way to count rows or distinctcount the articles where difference <0 ? Difference is a measure, based on several other measures. I only need one return with 3 as result...
- 4 years ago
Hello there Anonymous ! Not sure if this is what you need but:
Measure = CALCULATE( COUNTROWS( FILTER( SUMMARIZE( 'Articles', 'Articles'[Aggregation_criteria], "Diff", [Difference] ), [Difference] < 0 ) ) )Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
PaulDBrown
Community Champion
4 years agoLet's assume there row filter context is from the column Table[Field] and the measure is [difference]
You can try:
Count Field =
COUNTX (
CALCULATETABLE ( VALUES ( Table[Filed] ), FILTER ( Table, [Difference] < 0 ) ),
Table[Field]
)
It should work in a card visual