Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
TJK
Frequent Visitor

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"

 

TJK_0-1720639422086.png

 

Is there anyway that I can get my formula to ignore the values that fall under "Comp" so that they are not highlighted in any colors? In other words, I only want the "RF" values to be highlighted in colors.

 

Below is more formula:

 

Color =
IF(
    NOT(ISBLANK([Transactions])),
    RANKX(CALCULATETABLE(
        ALLSELECTED('Transactions Export'[Lender])),
        [Transactions],,,Dense
    )
)
1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Color =
IF(
    SELECTEDVALUE('Transactions Export'[Lender])<>"COMP" && NOT(ISBLANK([Transactions])),
    RANKX(CALCULATETABLE(
        ALLSELECTED('Transactions Export'[Lender])),
        [Transactions],,,Dense
    )
)

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

Color =
IF(
    SELECTEDVALUE('Transactions Export'[Lender])<>"COMP" && NOT(ISBLANK([Transactions])),
    RANKX(CALCULATETABLE(
        ALLSELECTED('Transactions Export'[Lender])),
        [Transactions],,,Dense
    )
)

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.