Forum Discussion

TJK's avatar
TJK
Helper I
2 years ago
Solved

Conditional Format Blank Values for Specified Column

I am trying to create a DAX formula to conditionally format the blank values for a specified column. 

 

In the below visual, I want all the blank values under "Renovo", "6/24", and "%" to show as the trianglelow icon.

 

 

Below is my formula:

Color =
IF(
    SELECTEDVALUE('Transactions Export'[Previous Month Filter])="Previous Month" && SELECTEDVALUE('Transactions Export'[Lender v3])="RENOVO" && ISBLANK([Transactions %]),"TriangleLow")
 
No icons appear with my formula. How can I acheive the desired result?
  • TJK yes, you need to have the same grantors in both tables so that a correspondence is created and you can have the cell as blank but matched.

    BBF

5 Replies