OK, I have this table visual in my Microsoft Power BI Report and I want to highlight a row if a column value is “Yes” but do nothing to the background if the value is “No”. In this Tiny Tip video, I will show you how to achieve this very thing.
Today’s DAX Expression:
Hold Background Color =
VAR _HoldColor = SELECTEDVALUE(Customers[Hold])
RETURN
IF(_HoldColor = “Yes”, “#A0D1FF”)
Pingback: Using DAX with Conditional Formatting in Microsoft Power BI - 365 Community