FormulaCraft

How to get the start date of a quarter in Excel and Google Sheets

Excel & Google Sheets
=DATE(YEAR(A2),INT((MONTH(A2)-1)/3)*3+1,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 dates in column A (A2:A6).
  2. 2In B2 enter =DATE(YEAR(A2),INT((MONTH(A2)-1)/3)*3+1,1).
  3. 3INT((MONTH-1)/3)*3+1 maps any month to its quarter's first month: Jan-Mar → 1, Apr-Jun → 4, Jul-Sep → 7, Oct-Dec → 10.
  4. 4Format column B as Date and copy down.

Tips

Need it for your exact data?

Describe your columns in plain English and get the precise formula for your sheet, with the right Excel or Sheets syntax.

Frequently asked

How do I get the quarter NUMBER instead of the start date?

Use =INT((MONTH(A2)-1)/3)+1 — this returns 1, 2, 3, or 4.

How do I get the LAST day of the quarter?

Use EOMONTH on the quarter start: =EOMONTH(DATE(YEAR(A2),INT((MONTH(A2)-1)/3)*3+1,1),2).

Formulas used

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

Last reviewed: