Forum Discussion
Anonymous
8 years agoNot applicable
Previous Month from a Date Column in Query Editor
So I have to do this in Query Editor. I have a date column that has various dates like 2/1/16, 3/3/16, 4/2/16, etc.. I need to create a column with a date that is the last day of the previous month b...
- Anonymous8 years ago
Anonymous,
You can add a custom column and paste in the following code:
=Date.EndOfMonth(Date.AddMonths(DateColumn, -1))
Anonymous
8 years agoNot applicable
Anonymous,
You can add a custom column and paste in the following code:
=Date.EndOfMonth(Date.AddMonths(DateColumn, -1))
- Anonymous8 years agoNot applicable
Anonymous Easy enough! Thanks for the help!
- TorsteinZahl3 years agoFrequent Visitor
Easy and nice, no techincal debt