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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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

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

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

Everything else is correct.

@Aditya_Meshram @edhans  Thank you both! 

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.