Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello Everyone,
I have a simple table (Name, Value) , and I have a slicer with Name
Requirement:
When I select a name, the bar of this name changes its color, like this picture
My thoughts are:
1. delete the interaction between the slicer and the bar chart
2.develop a dax formula to get only the selected value ( SelectedValue function won't work as it will get a the same name for each row)
3. this dax will generate 1 only for the selected row and 0 for other rows
4.make color code based on the rule that this function = 1 to be red
Thanks
Solved! Go to Solution.
Thank you @amitchandak this helped alot,
also I developed a calculation with same logic that may help anyone
Thank you @amitchandak this helped alot,
also I developed a calculation with same logic that may help anyone
@Anonymous , Create an independent date table with name
Names = distinct(Table[Name])
then create a color measure and use that in conditional formatting using field value option
You can use color name or hex code with prefix #
color = if(isfiltered(Names[Name]) && Max(Table[Name]) in allselected(Names[Name]) , "Red", "Blue" )
PowerBI Abstract Thesis: How to do conditional formatting by measure and apply it on pie?
https://www.youtube.com/watch?v=RqBb5eBf_I4&list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L
https://community.powerbi.com/t5/Community-Blog/Power-BI-Conditional-formatting-the-Pie-Visual/ba-p/1682539
Similar problem that you've answered before. Want selected column to be a different color. I followed your instructions, but cannot get only one column to change color based on slicer selection. All columns turn blue or red.
What I have:
What I want:
Table
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |