Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi all,
Is there a possibility to conditional format columns in column chart based on slicer selection?
Thanks in advance for all your help.
Solved! Go to Solution.
Hi @Marac0105
Yes,you may check below sample file.Create a measure and use it as rule in conditional formatting.
Measure =
IF (
SELECTEDVALUE ( Table1[event] ) = "event1"
&& SUM ( Table1[value] ) > 5,
1,
IF (
SELECTEDVALUE ( Table1[event] ) = "event2"
&& SUM ( Table1[value] ) > 3,
2,
IF (
SELECTEDVALUE ( Table1[event] ) = "event3"
&& SUM ( Table1[value] ) > 2,
3
)
)
)
Regards,
Hi @Marac0105
Yes,you may check below sample file.Create a measure and use it as rule in conditional formatting.
Measure =
IF (
SELECTEDVALUE ( Table1[event] ) = "event1"
&& SUM ( Table1[value] ) > 5,
1,
IF (
SELECTEDVALUE ( Table1[event] ) = "event2"
&& SUM ( Table1[value] ) > 3,
2,
IF (
SELECTEDVALUE ( Table1[event] ) = "event3"
&& SUM ( Table1[value] ) > 2,
3
)
)
)
Regards,
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 42 | |
| 40 | |
| 21 | |
| 20 |
| User | Count |
|---|---|
| 150 | |
| 106 | |
| 65 | |
| 36 | |
| 36 |