Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ngct1112
Post Patron
Post Patron

Dynamic Color Formatting

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

ABC
153
5584
1225
541

 

I may need a DAX rather than using Rules in Conditional Formatting.

 

Appreciated if any helps

1 ACCEPTED 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

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.