Forum Discussion
Stuznet
Helper V
7 years agoIF OR Statement
Hi guys, I've looked around the forum prior to creating a new thread. Thanks to Stachu helped me on this previously. Now I need to add an OR satement into this function and I'm struggling to do...
- 7 years ago
Hey,
you can use this DAX statement to create a calculated column ...
calculated column = IF( OR( AND(ISBLANK('table'[date1]),ISBLANK('table'[date2])) ,YEAR('table'[date1]) > YEAR('table'[date2]) ,"Future" ,"Blank" )Hopefully this is what you are looking for.
Regards,
Tom
TomMartens
Super User
7 years agoHey,
you can use this DAX statement to create a calculated column ...
calculated column =
IF(
OR(
AND(ISBLANK('table'[date1]),ISBLANK('table'[date2]))
,YEAR('table'[date1]) > YEAR('table'[date2])
,"Future"
,"Blank"
)
Hopefully this is what you are looking for.
Regards,
Tom
Stuznet
Helper V
7 years agoThank you