This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
i want to create a conditonal formatting with background color for first customer priority ( we use direct query )
1. if currentAge < 60 and annualincome > 100,000 - priority should be green
2.if currentAge between 60 and 70 and annualincome between 60,000 and 100,000 - priority should be orange
3.if currentAge between > 70 and annualincome < 60,000 - priority should be red
Solved! Go to Solution.
@evano_oruvan , Create color measure
Switch( True(),
[Current age measure]< 60 && [annualincome Measure] > 100000, "Green",
[Current age measure] >= 60 && [Current age measure]< 70 && [annualincome Measure] >60000 && [annualincome Measure] <= 100000, "Orange",
[Current age measure] > 70 && [annualincome Measure] < 60000 , "Red")
Use this in conditional formatting using field value option
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/...
https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pan...
@evano_oruvan , Create color measure
Switch( True(),
[Current age measure]< 60 && [annualincome Measure] > 100000, "Green",
[Current age measure] >= 60 && [Current age measure]< 70 && [annualincome Measure] >60000 && [annualincome Measure] <= 100000, "Orange",
[Current age measure] > 70 && [annualincome Measure] < 60000 , "Red")
Use this in conditional formatting using field value option
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/...
https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pan...
thank you 🙂 mine is a calculated columns, i am unable to use the column, is there any workaround.
thanks
@evano_oruvan , You can create a calculated column, But it will take max or min color, based on row context. You have chosen min or max while defining conditional formatting
Switch( True(),
[Current age]< 60 && [annualincome] > 100000, "Green",
[Current age] >= 60 && [Current age]< 70 && [annualincome] >60000 && [annualincome Measure] <= 100000, "Orange",
[Current age] > 70 && [annualincome] < 60000 , "Red")
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 33 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 48 | |
| 33 | |
| 24 | |
| 24 |