Forum Discussion
LilYawney
Apr 16, 2023Brass Contributor
how do i change the default fiscal year in excel
Microsoft automatically identifies the quarters in a fiscal year that starts in January. My fiscal year starts in November; how can I change the automatic fiscal year to fit this?
- 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.
NikolinoDE
Apr 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_M330
Aug 03, 2023Copper Contributor
I 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:
- HansVogelaarAug 03, 2023MVP
Here is a possible solution. The exact formula depends on your definition of fiscal year; in this example it is
=YEAR(A2)+(MONTH(A2)>=$F$1)