Forum Discussion
Alistair
8 years agoFrequent Visitor
Count a measure?
I have a measure for customers calculating a column status. The output is True or False. I display the True values in a matrix. How can I count the number of Trues in the list? I have tried a...
- 8 years ago
Hi Alistair
Try this MEASURE
Measure = COUNTROWS ( FILTER ( VALUES ( 'Table'[Customer Name] ), [Status] ) )
Zubair_Muhammad
8 years agoCommunity Champion
Hi Alistair
Try this MEASURE
Measure = COUNTROWS ( FILTER ( VALUES ( 'Table'[Customer Name] ), [Status] ) )
- Alistair8 years agoFrequent Visitor
Thank you Zubair_Muhammad