Using DAX with Conditional Formatting in Microsoft Power BI

Tiny Tips

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”)

 

 

One thought on “Using DAX with Conditional Formatting in Microsoft Power BI

  1. Pingback: Using DAX with Conditional Formatting in Microsoft Power BI - 365 Community

Leave a Reply