Forum Discussion
Anonymous
5 years agoNot applicable
EOMONTH equivalent in M
Is there an equivalent of EOMONTH function in Power Query? Or is there a work around to calculate end of month of a date for next month, and for previous month? I'll highly appreciate some help....
- Anonymous5 years ago
ok so it will be
Date.EndOfMonth(Date.AddMonths([Date],1))
- Anonymous5 years ago
You could do:
LoadDate = Table.AddColumn(LastStepName, "NewColumnName", each Date.EndOfMonth(Date.AddMonths([Column2]{0}, 1))
This will increment the date by one month, and then get that end of month date.
--Nate
Anonymous
5 years agoNot applicable
eomonth(date,1) gives next month's end date. How would we do that in M?
Anonymous
5 years agoNot applicable
ok so it will be
Date.EndOfMonth(Date.AddMonths([Date],1))