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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi All
I have a bar chart with YrMth , i like to make every year different colour , may i know how to do it ?
Below is my PBI file :-
Paul
Solved! Go to Solution.
@admin11 , Try a color measure like
Switch(max('Date'[year]),
2019, "green",
2020, "blue",
2021, "red",
"grey"
)
@admin11 , in coditional formatting, Data color , advance option, "Field value" nad use measure
refer my video for this https://youtu.be/RqBb5eBf_I4
Thank you very much , it work fine now