Forum Discussion
INJAINP
7 years agoFrequent 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...
- Anonymous7 years ago
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!!!
- 7 years ago
Hello Angad,
Thanks for your input.
The issue got resolved as I was just doing a minor mistake.
Thanks
Priyanka
INJAINP
7 years agoFrequent Visitor
Hello Angad,
Thanks for your input.
The issue got resolved as I was just doing a minor mistake.
Thanks
Priyanka