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 moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
i want to do Conditional formatting based on a column value. My table is as follows
| Person | Qualified | |
| Andrew | Yes | |
| Liz | No | |
| Alex | Yes | |
| Linda | No | |
| Hellen | Yes | |
| Angel | Yes |
The task is to ensure that all that have not qualified are marked Red. Those that have not should be green.
I have something as the following. Help to correct this.
Disqualified Color = IF(VALUE('Qualification[Qualified] = "TRUE", "Red", "Green"))
Solved! Go to Solution.
@Anonymous Follow the below steps:
Step 1: Create a calculated column using below DAX:
@Anonymous Follow the below steps:
Step 1: Create a calculated column using below DAX:
@Anonymous , If you see my post so I haven't used MAX. Simply use column and follow those steps so you'll get just like my output screen shot.
@Anonymous , Try a measure like
Disqualified Color = IF(Max('Qualification'[Qualified]) = "Yes", "Red", "Green")
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
https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pane-66e0afcb15f3
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 |
|---|---|
| 34 | |
| 31 | |
| 30 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 63 | |
| 53 | |
| 31 | |
| 23 | |
| 23 |