Extracting a quarter from a date in Excel can be a useful task when you want to analyze data on a quarterly basis. Excel provides a simple and efficient way to achieve this using its built-in functions. In this article, we will guide you through the process of extracting the quarter from a date in Excel.
Understanding Quarters in Dates
Before we dive into the methods, it's important to understand how Excel represents quarters in dates. Excel stores dates as serial numbers, where 1 represents the date 1/1/1900. Each day is represented by a whole number, and each month is represented by a fraction of a number. Quarters are represented as follows:
- Q1 (January - March): 0.25
- Q2 (April - June): 0.5
- Q3 (July - September): 0.75
- Q4 (October - December): 1
Method 1: Using the QUARTER Function
The QUARTER function in Excel returns the quarter of the year that a given date falls into. The syntax is: QUARTER(date). Here's how to use it:

Step 1: Suppose you have a date in cell A1 (e.g., 01/05/2022).
Step 2: In cell B1, enter the formula =QUARTER(A1).
Step 3: Press Enter. The cell will display the quarter (1, 2, 3, or 4) that the date falls into.

Method 2: Using the INT Function
Another way to extract the quarter is by using the INT function, which rounds a number down to the nearest integer. Here's how:
Step 1: In cell B1, enter the formula =INT((MONTH(A1)+2)/3).
Step 2: Press Enter. The cell will display the quarter (1, 2, 3, or 4) that the date falls into.

Why INT((MONTH(A1)+2)/3)?
The formula works as follows:
MONTH(A1)returns the month of the date in A1.- Adding 2 shifts the range to (3, 6, 9, 12).
- Dividing by 3 gives the quarter (1, 2, 3, 4).
- INT rounds down to the nearest integer.
Comparing the Methods
Both methods achieve the same result, but they have different use cases:
| Method | Pros | Cons |
|---|---|---|
| QUARTER | Simple and easy to understand. | Not available in earlier versions of Excel (before Excel 2010). |
| INT | Works in all versions of Excel. | Less intuitive and more prone to errors if the formula is modified. |
Choose the method that best fits your needs and version of Excel.
In this article, we've shown you two methods to extract the quarter from a date in Excel. Whether you're analyzing sales data, tracking project progress, or planning your budget, being able to work with dates on a quarterly basis is a valuable skill. Happy quarterly planning!









![How to calculate time between two dates in Years, Months & Days [Excel Formula]](https://i.pinimg.com/originals/d3/c9/90/d3c990f0122e0201eec12420841162c7.png)











