Forum Discussion
TJK
2 years agoHelper I
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...
- 2 years agoColor =IF(SELECTEDVALUE('Transactions Export'[Lender])<>"COMP" && NOT(ISBLANK([Transactions])),RANKX(CALCULATETABLE(ALLSELECTED('Transactions Export'[Lender])),[Transactions],,,Dense))
lbendlin
2 years agoSuper User
Color =
IF(
SELECTEDVALUE('Transactions Export'[Lender])<>"COMP" && NOT(ISBLANK([Transactions])),
RANKX(CALCULATETABLE(
ALLSELECTED('Transactions Export'[Lender])),
[Transactions],,,Dense
)
)