Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Select a point within scatter plot without loosing other points

Hello,   Please I want to know if this situation is possible?   Here is the graph When I select one sector the others disapear What I want, if possible, when selecting a sector the po...
  • v-frfei-msft's avatar
    7 years ago

    Hi Anonymous ,

     

    One sample for your reference. Please check the following steps as below.

     

    1. Create a calculated table.

    Client = VALUES('table'[Client ])

    2. New a measure and make the visual formatted by it.

     

    Measure = var _sele = VALUES(Client[Client ])
    return
    IF(MAX('table'[Client ]) in _sele,"#03ad00","#030200")

     

     

    Pbix as attached.

     

    Regards,

    Frank