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