Forum Discussion
amandabus21
Helper V
3 years agoFiscal Year / Calendar Year
Hi, I need help creating a new column in Power Query where I create a Calendar Year. Our fiscal year begins in July. Id like a column named "Calendar Year" Thanks!
- 3 years ago
You can create a custom column with this expression.
= if Date.Month([Merged])>6 then Date.Year([Merged]) + 1 else Date.Year([Merged])
Pat
ppm1
Solution Sage
3 years agoYou can create a custom column with this expression.
= if Date.Month([Merged])>6 then Date.Year([Merged]) + 1 else Date.Year([Merged])
Pat
- amandabus213 years ago
Helper V
Hi, ppm1
I ran into an issue with this.
The calendar year should be "2022" not 2024.
Thank you for your help!
- amandabus213 years ago
Helper V
ppm1 was able to fix with "-1" instead of "+1" thank you!
- Stuart9093 years agoNew Member
How would I change this to be the first monday in april?