Forum Discussion

edcdcpowerbi's avatar
edcdcpowerbi
Icon for Helper I rankHelper I
4 years ago
Solved

CALCULATE filtering table by conditional measure

I have two measures which calculate initial and final scores.  I now wish to have a measure which has all the clients who finished with a higher final score.  A bit lost on how to go about it, this...
  • v-kkf-msft's avatar
    4 years ago

    Hi edcdcpowerbi ,

     

    Please try the following formula:

     

    Measure = 
    CALCULATE (
        DISTINCTCOUNT ( 'Client'[ID] ),
        FILTER ( ALLSELECTED ( Client[ID] ), [Final Score] > [Initial Score] )
    )

    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.