Forum Discussion
how do i change the default fiscal year in excel
- Apr 17, 2023
Niko, that link is for Microsoft Project, not for Excel. As far as I know, Excel does not have a built-in concept of fiscal year.
You can change the default fiscal year in Excel by following these steps:
Choose File > Options, and then select Schedule.
In the Fiscal year starts in box, select the month with which you want the fiscal year to start.
If you want to label the fiscal year by using the calendar year in which that fiscal year begins (rather than the calendar year in which it ends), select the Use starting year for FY numbering check box.
I hope this helps!
- LisaWoodOct 01, 2024Copper Contributor
- SergeiBaklanOct 01, 2024Diamond Contributor
No such setting in Excel. Perhaps the answer was generated by ChartGPT.
- LisaWoodOct 01, 2024Copper ContributorThanks for replying!
- NikolinoDEApr 17, 2023Gold Contributor
I'm probably a bit upset today, I have so much around me today...
Hans Vogelaar I apologize for my mistake :).@LilYawney It seems that there is no built-in way to change the default fiscal year in Excel.The only thing I could find on the internet, a workaround might be to create a helper column and fill the month numbers in there.
For example, if you want July to be 1 and June to be 12, you could use a formula to populate the helper column with the appropriate month numbers.
Thank you both for your understanding and patience :).
- Scott_M330Aug 03, 2023Copper ContributorI have the same issue, is there really no way to change to the fiscal start month?? The quarterly pivot table is off.
- SnowMan55Aug 04, 2023Bronze Contributor
Scott_M330 If you are using Excel 365/Excel for the web, you can use the LAMBDA function (a better description is in this AbleBits article) to create a formula that you name and store in the Name Manager. Then you can use that name as a custom function throughout your workbook. This has the advantage that any future change to the custom formula can be done in only one place.
For a fiscal year starting in July, the formula could be:
=LAMBDA(some_date, IF( MONTH(some_date) < 7, YEAR(some_date), YEAR(some_date)+1 ) )
…which could be defined as, e.g., MyFiscalYear:
An example of its use:
- HansVogelaarApr 17, 2023MVP
Niko, that link is for Microsoft Project, not for Excel. As far as I know, Excel does not have a built-in concept of fiscal year.