The quarter of year calculator tells you which three-month quarter a date belongs to — either the standard calendar quarter or a fiscal quarter aligned to a custom year-start month. It is useful for reporting, accounting, planning, and tagging records by period.
How it works
A year has twelve months grouped into four quarters of three months each. For calendar quarters, the quarter is computed directly from the month: with months numbered 0–11, the quarter is floor(month / 3) + 1. That gives Q1 = Jan–Mar, Q2 = Apr–Jun, Q3 = Jul–Sep, Q4 = Oct–Dec.
For a fiscal year that starts in a month other than January, the tool first shifts the month so the fiscal start becomes month 0:
shifted = (month - fiscalStartMonth + 12) % 12
fiscalQuarter = floor(shifted / 3) + 1
It then computes the first and last calendar dates of that quarter, which may roll into the next calendar year when the fiscal year does not start in January.
Example
With a fiscal year starting in April:
- April, May, June → fiscal Q1
- July, August, September → fiscal Q2
- A date in February falls in fiscal Q4, and that quarter’s range runs January–March of the following calendar year.
Common fiscal year start months
Different countries and industries use different fiscal year conventions, which means the same calendar date can fall in different fiscal quarters depending on the organisation:
| Fiscal year start | Used by |
|---|---|
| January (Q1 = Jan–Mar) | US calendar year, many European companies |
| April (Q1 = Apr–Jun) | UK government, Indian fiscal year |
| July (Q1 = Jul–Sep) | Australian government, many US educational institutions |
| October (Q1 = Oct–Dec) | US federal government |
Set the fiscal start month to match the convention your reports or systems use before reading the quarter result.
Practical uses
Reporting and dashboards — grouping data by quarter is a common reporting dimension. Knowing which quarter a transaction date falls in — especially when the fiscal year differs from the calendar year — is needed for revenue by period, budget vs. actual comparisons, and quarterly summaries.
Data pipelines and ETL — SQL and spreadsheet formulas for fiscal quarter assignment can be tricky when the fiscal year crosses a calendar year. Verifying the expected output of a formula against this calculator helps catch off-by-one errors.
Meeting and deadline planning — knowing that a date is in Q2 of fiscal year 2026/27 pins the context when coordinating with colleagues who use a different fiscal calendar, especially in multinational teams.
Leave and payroll — some payroll and HR systems distribute certain accruals or bonuses by fiscal quarter. Identifying the right quarter for a given date ensures amounts are assigned to the correct period.
All arithmetic is local to your browser — nothing is sent anywhere.