Forum Discussion

Peleias's avatar
Peleias
Helper I
4 years ago
Solved

Count Results from a Measure

Hi Guys. Looking and looking I only saw complicated formulas of what I need and I couldn't reproduce. I think it's simple. (for the experts) I have a column with results from a measure. (with ...
  • v-kkf-msft's avatar
    v-kkf-msft
    4 years ago

    Hi Peleias ,

     

    You need to create a separate table that contains all the status values. 

     

     

    Then use the measure.

     

    Count_ = 
    COUNTROWS (
        FILTER (
            VALUES ( 'Table'[Column] ),
            [Result from a Measure] = MAX ( 'Status'[Value] )
        )
    )

     

    If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
    Best Regards,
    Winniz
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.