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 dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
16 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
23 | |
11 | |
10 | |
10 | |
8 |