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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
INJAINP
Frequent Visitor

blank value in if else

Hello Folks,

 

I have below scenario where if date1 is gretaer than date2 then it should display YES And otheriwse it should be  NO.

 

I want if Date 2 is blank then NO should be populated but it is populating YES.

 

Can anyone help me in knowing how to get this?

 

Thanks

Priyanka

3 ACCEPTED SOLUTIONS
SivaMani
Resident Rockstar
Resident Rockstar

@INJAINP,

 

Try the below DAX code,

 

IF(ISBLANK(date2),"NO", IF(date1 > date2, "YES","NO"))

 

Thanks,

Siva

View solution in original post

Anonymous
Not applicable

Hi @INJAINP

 

Write dax in this way 

Selection = IF(ISBLANK(Table1[Date2]),"No",
           IF(Table1[Date1]>Test2[Date2],"Yes","No"))

Hope this will help you!!!

View solution in original post

Hello Angad,

 

Thanks for your input.

 

The issue got resolved as I was just doing a minor mistake.

 

Thanks

Priyanka

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @INJAINP

 

Write dax in this way 

Selection = IF(ISBLANK(Table1[Date2]),"No",
           IF(Table1[Date1]>Test2[Date2],"Yes","No"))

Hope this will help you!!!

Hello Angad,

 

Thanks for your input.

 

The issue got resolved as I was just doing a minor mistake.

 

Thanks

Priyanka

@INJAINP

 

Please post your solution and mark as a solution or mark any of the replies as a solution that solved your problem. It will help people who are facing the same issue.

 

Thanks,

Siva

SivaMani
Resident Rockstar
Resident Rockstar

@INJAINP,

 

Try the below DAX code,

 

IF(ISBLANK(date2),"NO", IF(date1 > date2, "YES","NO"))

 

Thanks,

Siva

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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