Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Select a percentage from a user

I have a user that wants to select values in a matrix that is over a cetain percentage..i.e   selection : show me all returns over 10%    Prod      Returns A           10% B           20% C   ...
  • v-lionel-msft's avatar
    6 years ago

    Hi Anonymous ,

     

    table Value = SELECTEDVALUE('table'[Percentage], 0.1)
    Measure = 
    IF(
        MAX(Sheet2[Return])>'table'[table Value],
        1,
        0)

     

     

     

    Best regards,

    Lionel Chen

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.