Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
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
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 23 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 44 | |
| 42 | |
| 40 | |
| 39 |