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 few measures such as the following Countrows, DistinctCount, but can't get them to pull the correct count.
Measure 2 = CALCULATE (DISTINCTCOUNT ( table[CustomerName] ), FILTER(table,[Status]=TRUE))
True rows are 466, but I keep getting 996 on distinct count.
Fields: Customer Name, Value, Status (measure)
Matrix: Customer Name, Status (filtered by True)
Hi Alistair
Try this MEASURE
Measure = COUNTROWS ( FILTER ( VALUES ( 'Table'[Customer Name] ), [Status] ) )
2 Replies
- Zubair_MuhammadCommunity Champion
Hi Alistair
Try this MEASURE
Measure = COUNTROWS ( FILTER ( VALUES ( 'Table'[Customer Name] ), [Status] ) )
- AlistairFrequent Visitor
Thank you Zubair_Muhammad