Forum Discussion
Background Colour - conditional formatting
- 10 months ago
hello Manikanta2108
H Color =
IF(
not ISBLANK(SELECTEDVALUE('Table'[H])),
"#FF0000"
)This should be color any row with no blank value.Hope this will help.Thank you.
Hi Manikanta2108,
there is no such conditional formatting available, but you can try below DAX add it to background color of the cell, you can tweak the esle part of if as per your requirement
BG_Color_C =
SWITCH(
TRUE(),
ISBLANK([C]), "#FFFFFF",
[C] > 100, "#FF9999",
[C] > 50, "#FFFF99",
"#99FF99"
)
π I hope this solution helps you unlock your Power BI potential! If you found it helpful, click 'Mark as Solution' to guide others toward the answers they need.
π‘ Love the effort? Drop the kudos! Your appreciation fuels community spirit and innovation.
π As a proud SuperUser and Microsoft Partner, weβre here to empower your data journey and the Power BI Community at large.
π Curious to explore more? [Discover here].
Letβs keep building smarter solutions together!
- Manikanta210810 months agoHelper I
tried the above dax you provided its not working for me.