Forum Discussion
Stevianne
3 years agoFrequent Visitor
enddate before or after today's date?
I have a column with enddates. And I have a column with date today. I want to make a measure if enddate is before or after today's date. I tried below: IF (enddate) < (today), "yes")) it ...
Anand24
Super User
3 years agoHi Stevianne ,
Please use below DAX in a calculated measure:
Date Check = IF(MAX(Table[EndDate]) < MAX(Table[Today]),"Yes","No")
Result:
Give a Thumbs Up if this post helped you in any way and Mark This Post as Solution if it solved your query !!! Proud To Be a Super User !!! |