This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
May I write ONE dax to do the Conditional Formatting applying to Columns A,B,C like that
Color_DAX =
var _Darkgreen = " #34A853"
Return
if(Table[A] = 5, _Darkgreen)
Table
| A | B | C |
| 1 | 5 | 3 |
| 5 | 58 | 4 |
| 12 | 2 | 5 |
| 5 | 4 | 1 |
I may need a DAX rather than using Rules in Conditional Formatting.
Appreciated if any helps
Solved! Go to Solution.
@ngct1112 , as long as conditional is needed column A or combination column A, b, and C you can use that for any values /columns.
If you need pass measure to condition check for calculation groups
@ngct1112 , better to create this on a measure like and use in conditional formatting with field value option
Color_DAX =
var _Darkgreen = " #34A853"
Return
Switch(true(),
sum(Table[A]) = 5, _Darkgreen
sum(Table[A]) = 3, "#FF0000"
"#00ff00"
)
refer for steps
https://www.youtube.com/watch?v=RqBb5eBf_I4
https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-num...
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values
@amitchandak , thanks but could I also apply this DAX to columns B & C as well without modifying?
What I am hoping is this DAX can cover all colums A,B,C rather than create 3 different DAX.
Great thanks.
@ngct1112 , as long as conditional is needed column A or combination column A, b, and C you can use that for any values /columns.
If you need pass measure to condition check for calculation groups
@amitchandak , sorry, I may not explain my question very well and I will open an new topic to make it clear.
However, thanks for your answer and it helps a lot
Check out the May 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 |
|---|---|
| 32 | |
| 25 | |
| 24 | |
| 24 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |