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...
  • Zubair_Muhammad's avatar
    8 years ago

    Hi Alistair

     

    Try this MEASURE

     

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