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!Get Fabric certified for FREE! Don't miss your chance! Learn more
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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 69 | |
| 59 | |
| 47 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 106 | |
| 102 | |
| 38 | |
| 27 | |
| 27 |