Microsoft Excel

Add or Subtract Dates

Applies To: Excel 2016 Excel 2013 Excel 2010 Excel 2007

Suppose you want to adjust a project's schedule date by adding two weeks to see what the new completion date will be, or you want to determine how long a single activity will take to complete in a list of project tasks. You can add or subtract a number of days to or from a date by using a simple formula, or you can use worksheet functions that are designed to work specifically with dates in Excel.

Add Days To Or Subtract Days From a Date

Suppose that an account balance of yours is due on February 8, 2010. You want to transfer funds to your checking account so that those funds arrive 15 calendar days before that date. In addition, you know that your account has a 30 day billing cycle, and you want to determine when you should transfer funds for your March 2010 bill so that those funds are available 15 days before that date.

In cell A1, type 2/8/10.

In cell B1, type =A1-15.

In cell C1, type =A1+30.

In cell D1, type =C1-15.

Cells A1 and C1 show the due dates (2/08/10 and 3/10/10) for the February and March account balances, and cells B1 and D1 show the dates (1/24/10 and 2/23/10) by which you should transfer your funds for those due dates.

Add Months To Or Subtract Months From A Date

You can use the EDATE function to quickly add or subtract a specific number of whole months to or from a date.

The EDATE function requires two values (also referred to as arguments): the start date and the number of months that you want to add or subtract. To subtract months, enter a negative number as the second argument (for example, =EDATE("2/15/10",-5). This formula results in the date 9/15/09.

You can specify the value of the start date either by referring to a cell that contains a date value or by entering a date enclosed in quotation marks, such as "2/15/10".

For example, suppose you want to add 16 months to October 16, 2009.

  1. In cell A5, type 10/16/09.
  2. In cell B5, type =EDATE(A5,16).

The function uses the value in cell A5 as the date.

  1. In cell C5, type =EDATE("10/16/09",16).

In this case, the function uses a date value that you enter directly, "10/16/09."

Cells B5 and C5 should both show the date 2/16/11.

Note:Depending on the format of the cells that contain the formulas that you entered, Excel might display the results as serial numbers; in this case, 2/16/11 might be displayed as 40590.

Excel stores dates as sequential serial numbers so that they can be used in calculations. By default, January 1, 1900 is serial number 1, and January 1, 2010 is serial number 40179 because it is 40,178 days after January 1, 1900.

  1. If your results appear as serial numbers, select cells B5 and C5 and continue with the following steps.
  2. On the Home tab, in the Cells group, click Format, and then click Format Cells.
  3. In the Format Cells dialog box, click the Number tab.
  4. Under Category, click Date, and then click OK. The value in each of the cells should appear as a date instead of a serial number.

Add Years To Or Subtract Years From A Date

Copy the following data in a blank Excel worksheet, starting with cell A1.

In cells A7 through A8, enter DATE functions to add/subtract the years specified in cells B2 through B4.

IMPORTANT: If the cell is formatted as General and you enter the DATE function, Excel will format your result as mm/d/yyyy based on your Regional Settings. If you want to display the serial number result from the DATE function, change the format of the cell to General after entering the formula.

/ Formula / Description (Result)
=DATE(YEAR(A2)+B2,MONTH(A2),DAY(A2)) / Adds 3 years to 6/9/2009 (6/9/2012)
=DATE(YEAR(A3)+B3,MONTH(A3),DAY(A3)) / Subtracts 5 years from 9/2/2009 (9/2/2004)
=DATE(YEAR(A4)+B4,MONTH(A4),DAY(A4)) / Adds 25 years to 12/10/2010 (12/10/2035)

How the formula works

In each of the three formulas above, a specified number of years from column B is added to the year value that is derived from the date in column A.

For example, in cell A6, the YEAR function is used on the date in cell A2 (6/9/2009), and returns 2009 as the year. The formula then adds 3 (the value in cell B2) to the year value, which results in 2012. In the same formula, the MONTH function returns the value 6, and the DAY function returns the value 9. The DATE function then combines these three values into a date that is three years in the future— 6/9/2012.

You can use a similar formula to add months to a date. For example, by using the previous sample data, you can add 9 months to the date 6/9/2009 by using the following formula: =DATE(YEAR(A2),MONTH(A2)+9,DAY(A2)). This formula returns the date 3/9/2010.

Add A Combination Of Days, Months, And Years To A Date

Insert a blank Excel worksheet and type 6/9/2017 in cell A1.

Use theDATE function to calculate the following:

In cell A3, calculate the date 3 years, 1 month, and 5 days from 6/9/2017.

In cell A4, calculate the date 1 year, 7 months, and 5 days from 6/9/2017.

Formula / Description (Result)
=DATE(YEAR(A1)+3,MONTH(A1)+1,DAY(A1)+5) / Add 3 years, 1 month, and 5 days to 6/9/2017 (7/14/2020)
=DATE(YEAR(A1)+1,MONTH(A1)+7,DAY(A1)+5) / Add 1 year, 7 months, and 5 days to 6/9/2017 (1/14/2019)

The formulas in the example have the following arguments (an argument is a value that is supplied to a function).

Formula to add dates

start_date: A date or reference to a cell that contains a date.

add_year: The number of years to be added.

add_month: The number of months to be added.

add_day: The number of days to be added.

How the formula works

In each of the formulas, a specified number of years, months, and days are added to the date that is contained in cell A2.

For example, in cell A5 (the second formula), the YEAR function is used on the date in cell A1 (6/9/2017), and returns 2017 as the year. The formula then adds 1 to the year value, which results in 2018. The MONTH function returns the value 6, and 7 months are added to that value. Because the total of 6 months plus 7 months is 13 months, the DATE function adds 1 year to the year value, resulting in 2019. The DATE function then subtracts 12 from the month value, resulting in a value of 1 for the month. The DAY function returns the value 9, and 5 days are added to that, resulting in 14. Finally, the DATE function combines these three values (2019, 1, and 14) into a date that is one year, seven months, and 5 days in the future— 1/14/2019.

Sources

Microsoft. 2017. “Add or Subtract Dates.” (accessed April 12, 2017).

Tech on the Net. 2003–2017. “MS Excel: How to Use the DATE Function (WS).” (accessed April 27, 2017).

Filename: Excel_Add_Subtract_Dates.docx. Last updated April 27, 2017.

Page | 1