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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Stuznet
Helper V
Helper V

If Datesbetween True then Return Blank Future Dates

Hi guys,

 

I'm currently having trouble getting this statement right. 

Here is the situation,

If Date 1 ISBLANK and Date 2 ISBLANK return blank and if Date1 is greater than Date 2 return Future Date.

I don't know how to write this logic in DAX.

 

Can someon1 please help?

1 ACCEPTED SOLUTION
Stachu
Community Champion
Community Champion

quite simple - with NOT 🙂

Column = IF(ISBLANK([Date1]) && 
            NOT(ISBLANK([Date2])), BLANK(),
         IF(YEAR([Date1]) > YEAR([Date2]),"Future"," "))


Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

5 REPLIES 5
Stachu
Community Champion
Community Champion

this is for a calculated column?
Something like this should work

Column =
IF (
    ISBLANK ( Table[Date1] ) && ISBLANK ( Table[Date2] ),
    BLANK (),
    IF ( Table[Date1] > Table[Date2], Table[Future Date], BLANK () )
)


Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

@Stachuthank you for your response.

 

I revised the DAX function you provided.

Column = IF(ISBLANK([Date1]) && 
            ISBLANK([Date2]), BLANK(),
         IF(YEAR([Date1]) > YEAR([Date2]),"Future"," "))

and I would like to change Date2 to is not blank, how do I revise it?

Stachu
Community Champion
Community Champion

quite simple - with NOT 🙂

Column = IF(ISBLANK([Date1]) && 
            NOT(ISBLANK([Date2])), BLANK(),
         IF(YEAR([Date1]) > YEAR([Date2]),"Future"," "))


Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

@Stachuyou're da best!!! thank you so much ^^

Stachu
Community Champion
Community Champion

glad to help 🙂



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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