Calendar quarters and manual fiscal-quarter formulas

Use calendar quarters directly and calculate fiscal quarters manually when an organization uses a different 12-month year.

A calendar quarter is easy: Q1 is January–March, Q2 is April–June, Q3 is July–September and Q4 is October–December. A fiscal quarter depends on the organization’s fiscal year. The same date can be calendar Q1 and fiscal Q4 if the fiscal year starts in April.

Lutrakit’s free Quarter Finder is useful when you need a quick calendar-quarter label with no account and no spreadsheet. It calculates calendar quarters only: Q1 is January–March, Q2 is April–June, Q3 is July–September and Q4 is October–December. It does not have a fiscal-start-month setting. Use the fiscal formula below manually, and always check the calendar used by the organization whose report, deadline or planning cycle you are interpreting.

International scope: this fiscal method is not tied to any country. It applies to organizations whose financial year consists of 12 fixed months divided into four consecutive three-month quarters. This model is common in many countries, but it is not universal. Always use the organization’s official calendar rather than assuming a rule from its country. The formula does not apply directly to 4-4-5 or 4-5-4 calendars, 52- or 53-week years, or transition periods.

Calendar quarter formula

For a normal calendar year, use the month number from 1 to 12:

calendar quarter = floor((month - 1) / 3) + 1

Examples:

Date Month Calculation Calendar quarter
2026-01-01 1 floor(0 / 3) + 1 Q1
2026-03-31 3 floor(2 / 3) + 1 Q1
2026-04-01 4 floor(3 / 3) + 1 Q2
2026-12-31 12 floor(11 / 3) + 1 Q4

Boundary rule: quarters change at midnight at the start of the first day of the new quarter in the chosen time zone. If a timestamp sits near midnight, convert the time zone first, then label the quarter. Use Timestamp Converter or Date Format Converter when the source date includes a time or ambiguous numeric format.

ISO’s date-format guidance explains the unambiguous YYYY-MM-DD order used by ISO 8601. That does not define fiscal quarters, but it helps avoid confusing 03/04/2026 as March 4 in one locale and 3 April in another.

Fiscal quarter formula

This section is a manual method independent of the current Quarter Finder UI. Do not enter a fiscal start month in Lutrakit today; the tool does not expose that option.

Pick the fiscal start month s, where January is 1 and December is 12. Let m be the date’s month.

months since fiscal start = (m - s + 12) mod 12
fiscal quarter = floor(months since fiscal start / 3) + 1

If the fiscal year starts in April (s = 4):

Date Month Months since April Fiscal quarter
2026-04-01 4 0 Q1
2026-06-30 6 2 Q1
2026-07-01 7 3 Q2
2026-12-15 12 8 Q3
2026-01-15 1 9 Q4

The quarter number is not the only convention. The fiscal year label can be based on the year in which the fiscal year starts or the year in which it ends. This convention belongs to the organization or the applicable regulatory framework; it cannot be inferred from the country alone.

For example, with an April-start fiscal year labelled by ending year:

  • April 1, 2025 to March 31, 2026 is FY2026.
  • January 15, 2026 is FY2026 Q4.
  • April 1, 2026 starts FY2027 Q1.

Why local rules still matter

International IAS 34 on interim financial reporting covers periods shorter than a financial year, but it does not determine which entities must publish interim reports or how frequently. Those obligations are generally set by laws and regulators.

These examples show why there should not be one assumed rule per country:

  • In France, many businesses can choose their closing date and a financial year usually lasts 12 months, but some activities must close on December 31 (Service-Public).
  • In the United Kingdom, a company’s financial year usually lasts 12 months and ends on its accounting reference date, which can be changed under certain conditions (Companies House).
  • In the United States, the IRS distinguishes calendar years, fiscal years, and 52- or 53-week tax years (IRS — Tax years).
  • Some retailers use a 52-week 4-5-4 calendar, occasionally with a 53rd week; this guide’s month-based formula does not apply directly (National Retail Federation).

This guide therefore calculates a quarter within an already known calendar. It does not determine tax or accounting obligations and never replaces the calendar published by the organization concerned.

Worked example: calendar versus April fiscal year

Input date: 2026-01-15.

Calendar result:

month = 1
calendar quarter = floor((1 - 1) / 3) + 1 = Q1

Fiscal year starts in April:

s = 4
m = 1
months since fiscal start = (1 - 4 + 12) mod 12 = 9
fiscal quarter = floor(9 / 3) + 1 = Q4

If the organization labels the fiscal year by ending year, 2026-01-15 is FY2026 Q4. If it labels by start year, it might call the same period FY2025 Q4. The quarter is the same; the year label convention differs.

Boundary cases to test

Case What to verify
First day of fiscal year Should be fiscal Q1, day 1.
Last day before fiscal year starts Should be fiscal Q4.
Leap day, 2028-02-29 Month-based quarters handle it normally; day count does not change the quarter.
Fiscal start in January Fiscal and calendar quarters match if the label convention also matches.
52–53-week fiscal calendar Do not use a simple month-quarter tool unless the organization maps weeks to periods separately.

How to verify with Lutrakit

  1. Open Quarter Finder.
  2. Enter a date using an unambiguous format such as 2026-01-15.
  3. Record the calendar quarter shown by Lutrakit. For 2026-01-15, it should be calendar Q1.
  4. Do not look for a fiscal-start-month control; the current Quarter Finder does not have one.
  5. If you need an April-start fiscal quarter, calculate it manually with the formula above and record that the fiscal result was not produced by the tool.
  6. If the original date came as a timestamp, convert it first in the correct time zone with Timestamp Converter.