Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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 point change colour or size without loosing the other sectors points.
Something like that:
Thanks
Solved! Go to Solution.
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
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
Hi @v-frfei-msft ! I tried your solution in my project and it was very useful. However, in my case, I have many overlapping points in the same graph. Do you know how can I send forward the point that I selected, so that it is not hidden by the other points in the cloud?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.