FormulaCraft

How to get the fiscal year from a date in Excel and Google Sheets

Topic:Date arithmetic
Excel & Google Sheets
=IF(MONTH(A2)>=4,YEAR(A2),YEAR(A2)-1)

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1Enter your date in A2.
  2. 2For a fiscal year starting in April (common in UK, India, and Australia), enter =IF(MONTH(A2)>=4,YEAR(A2),YEAR(A2)-1).
  3. 3This returns the year in which the fiscal year started: April 2024 through March 2025 all return 2024.
  4. 4Change the 4 to match your fiscal year start month: 7 for July start, 10 for October start, 1 for January (same as calendar year).
  5. 5To label as 'FY2024', prefix with text: ="FY"&IF(MONTH(A2)>=4,YEAR(A2),YEAR(A2)-1).

Tips

Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.

Frequently asked

How do I get the fiscal quarter as well?

Combine fiscal month offset with ROUNDUP: =ROUNDUP(MOD(MONTH(A2)-4+12,12)/3+1,0) gives fiscal Q1-Q4 for an April fiscal year start. Pair this with the fiscal year formula for a full FY label.

What if my fiscal year starts in July?

Change the comparison month to 7: =IF(MONTH(A2)>=7,YEAR(A2),YEAR(A2)-1). July 2024 through June 2025 will all return 2024.

More on Date arithmetic

See all →

Formulas used

Related tasks

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: