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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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