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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
T_EA
New Member

Help with Conditional formatting DAX

Hi All, 

I hope I have the correct section of the forum, I have a DAX formula see below:

 

CF = VAR _today = TODAY() RETURN SWITCH( TRUE(), SELECTEDVALUE(Data[Expiry_Date]) <_today, "#FEB99C", SELECTEDVALUE(Data[Expiry_Date]) < _today + 30, "#FFED93", "#CDFA93")
 
essentially colours data in matrix based on expiry date, the issue I have is the <_today is colouring the boxes where there is a null value. I would rather these boxes be left blank, any help / pointers greatly appreciated
1 ACCEPTED SOLUTION
sanalytics
Super User
Super User

@T_EA 
Can you ISBLANK function for identifying the blank.. Your modifed DAX code should be below

CF =
VAR _today = TODAY()
VAR _expiryDate = SELECTEDVALUE(Data[Expiry_Date])
RETURN
    SWITCH(
        TRUE(),
        ISBLANK(_expiryDate), BLANK(),
        _expiryDate < _today, "#FEB99C",
        _expiryDate < _today + 30, "#FFED93",
        "#CDFA93"
    )

check if it is working or not.. If it is not working.. then suggesting to provide some dummy data and desired result to try from out end..

 

Hope it will help.

 

Regards,

sanalytics

View solution in original post

2 REPLIES 2
T_EA
New Member

Thanks ever so much 🙂

worked like a charm and is exactly what I was looking for.

 

Thank you again

sanalytics
Super User
Super User

@T_EA 
Can you ISBLANK function for identifying the blank.. Your modifed DAX code should be below

CF =
VAR _today = TODAY()
VAR _expiryDate = SELECTEDVALUE(Data[Expiry_Date])
RETURN
    SWITCH(
        TRUE(),
        ISBLANK(_expiryDate), BLANK(),
        _expiryDate < _today, "#FEB99C",
        _expiryDate < _today + 30, "#FFED93",
        "#CDFA93"
    )

check if it is working or not.. If it is not working.. then suggesting to provide some dummy data and desired result to try from out end..

 

Hope it will help.

 

Regards,

sanalytics

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.