We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
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 |
|---|---|
| 53 | |
| 38 | |
| 33 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 66 | |
| 63 | |
| 37 | |
| 34 | |
| 22 |