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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
rachaelwalker
Resolver III
Resolver III

Date1 greater than Date 2 formula

I am looking for help with my DAX formula to show if Install Date > Ship Date then flag it as a 1 otherwise 0. Currently, I am using the formula below but I don't want it to calculate for products with no ship dates. 

 

Past Due Flag = IF('IV_Product'[Install Date] > 'IV_Product'[Ship Date], 1, 0)

 

rachaelwalker_2-1632166997075.png

 

 

 

2 ACCEPTED SOLUTIONS
edhans
Super User
Super User

Try this @rachaelwalker 

Past Due Flag =
IF(
    ISBLANK( 'IV_Product'[Ship Date] ),
    BLANK,
    IF(
        'IV_Product'[Install Date] > 'IV_Product'[Ship Date],
        1,
        0
    )
)

If ShipDate is blank, it returns blank, otherwise it does your normal  1/0 result.



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

View solution in original post

Anonymous
Not applicable

Just a small thing you missed is that you didn't add parenthesis after BLANK. It Should be BLANK().

Everything else is correct.

View solution in original post

3 REPLIES 3
edhans
Super User
Super User

Try this @rachaelwalker 

Past Due Flag =
IF(
    ISBLANK( 'IV_Product'[Ship Date] ),
    BLANK,
    IF(
        'IV_Product'[Install Date] > 'IV_Product'[Ship Date],
        1,
        0
    )
)

If ShipDate is blank, it returns blank, otherwise it does your normal  1/0 result.



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting
Anonymous
Not applicable

Just a small thing you missed is that you didn't add parenthesis after BLANK. It Should be BLANK().

Everything else is correct.

@Anonymous @edhans  Thank you both! 

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.