Forum Discussion

TJK's avatar
TJK
Helper I
2 years ago
Solved

Conditional Formatting Only Active for Specific Column Value

I've created a row based conditional formatting DAX formula, but I don't want the conditional formatting to be active for the "Lender" column where Lender="COMP"     Is there anyway that I c...
  • lbendlin's avatar
    2 years ago
    Color =
    IF(
        SELECTEDVALUE('Transactions Export'[Lender])<>"COMP" && NOT(ISBLANK([Transactions])),
        RANKX(CALCULATETABLE(
            ALLSELECTED('Transactions Export'[Lender])),
            [Transactions],,,Dense
        )
    )