Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! 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
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 49 | |
| 34 | |
| 33 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 60 | |
| 59 | |
| 39 | |
| 25 | |
| 24 |