Forum Discussion

Alistair's avatar
Alistair
Frequent Visitor
8 years ago
Solved

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)

2 Replies

  • Zubair_Muhammad's avatar
    Zubair_Muhammad
    Community Champion

    Hi Alistair

     

    Try this MEASURE

     

    Measure =
    COUNTROWS ( FILTER ( VALUES ( 'Table'[Customer Name] ), [Status] ) )