Forum Discussion
bhmiller89
10 years agoHelper V
EndOfMonth DAX Function Issues
I made a column: ThisDate= TODAY() I then attempted to make the column: EOM= ENDOFMONTH(Table[ThisDate]) The results return the same date as TODAY(). Why won't it return the date of the las...
v-caliao-msft
10 years agoMicrosoft Employee
Hi Bhmiller89,
According to your description, you need to get the last day of current month by using a DAX expression, right?
If that is the case, you can use the DAX below
LastDay = EOMONTH(today(),0)
Regards,
Charlie Liao
edhans
9 years agoCommunity Champion
ISn't EndOfMonth() then essentially MAX() run on a dates column?