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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I have a table that has a column with three values - Red, Amber, Green. I want to colour the cells in the table to match the words.
I have tried "Field Value" dialog in Conditional Formatting, but this only allows the one choice.
Based on this article "https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting", I have tried a power query formula (Scope being the name of the column containing the values):
#"ColourScope1" = if[Scope]="Green" then 1 else 2,
#"ColourScope2" = if[Scope]="Amber" then 2 else 3,
#"ColourScope3" = if[Scope]="Red" then 3 else 1,
and used the "Rules" dialog (Green = 1; Amber = 2; Red = 3) to show the colours but only the first colour shows.
What am I doing wrong?
Solved! Go to Solution.
Found the solution. I was pointing the conditional formatting to the column rather than the measure..
Hi @kennoe
Create a measure
Measure = SWITCH(TRUE(),MAX([Scope])="Green",1,MAX([Scope])="Amber",2,MAX([Scope])="Red",3)
Best Regards
Maggie
Thanks Maggie
When i use this formula, I get the same result as my formula ie only the first value is recognised. I tested it on some dummy data and got the same result, only the first value is recognised.
Steve
Hi @kennoe
Do you use a measure or a calculated column?
Could you show me your screenshot about the table and formula, also the setting page of conditional formatting?
Best Regards
maggie
Maggie
I used a measure. Refer screenshot.
I have set up the conditional formatting as shown below.
Found the solution. I was pointing the conditional formatting to the column rather than the measure..
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 52 | |
| 45 | |
| 23 | |
| 21 |
| User | Count |
|---|---|
| 141 | |
| 114 | |
| 50 | |
| 37 | |
| 30 |