Excel DATEDIF Function

The Excel DATEDIF function returns the difference between two date values in years, months, or days. The DATEDIF (Date + Dif) function is a "compatibility" function that comes from Lotus 1-2-3. For reasons unknown, it is only documented in Excel 2000, but you can use it in your formulas in all Excel versions since that time.
Note: Excel won't help you fill out the arguments for DATEDIF like other functions, but it will work when configured correctly.
- start_date - Start date in Excel date serial number format.
- end_date - End date in Excel date serial number format.
- unit - The time unit to use (years, months, or days).
The DATEDIF (Date + Dif) function is a "compatibility" function that comes from Lotus 1-2-3. For reasons unknown, it is only documented in Excel 2000, but it works in all Excel versions since that time. As Chip Pearson says: DATEDIF is treated as the drunk cousin of the Formula family. Excel knows it lives a happy and useful life, but will not speak of it in polite conversation.
Time units
The DATEDIF function can calculate the time between a start_date and an end_date in years, months, or days. The time unit is specified with the unit argument, which is supplied as text. The table below summarizes available unit values and the result for each. Time units can be given in upper or lower case (i.e. "ym" is equivalent to "YM").
Unit | Result |
---|---|
"y" | Difference in complete years |
"m" | Difference in complete months |
"d" | Difference in days |
"md" | Difference in days, ignoring months and years |
"ym" | Difference in months, ignoring years |
"yd" | Difference in days, ignoring years |
Basic usage
In the example shown above, column B contains the date January 1, 2016 and column C contains the date March 1, 2018. In column E:
Difference in days
The DATEDIF function can calculate the difference between dates in days in three different ways: (1) total days , (2) days ignoring years, and (3) days ignoring months and years. The screenshot below shows all three methods, with a start date of June 15, 2015 and an end date of September 15, 2021:
The formulas used for these calculations are as follows:
Note that because Excel dates are just large serial numbers, the first formula does not need DATEDIF and could be written as simply the end date minus the start date:
=C5-B5 // end-start = total days
Difference in months
The DATEDIF function can calculate the difference between dates in months in two different ways: (1) total complete months , (2) complete months ignoring years. The screenshot below shows both methods, with a start date of June 15, 2015 and an end date of September 15, 2021:
Difference in years
The DATEDIF function can calculate the difference between dates in complete years with just one method, shown below:
Notice in row 6 the difference is almost 6 years, but not quite. Because DATEDIF only calculates complete years, the result is still is still 5. In row 7 we use the YEARFRAC function to calculate a more accurate result.
Notes
- Excel will not help you fill in the DATEDIF function like other functions.
- DATEDIF with throw a #NUM error if start date is greater than the end date. If you are working with a more complex formula where start dates and end dates may be unknown, or out of bounds, you can trap the error with the IFERROR function, or use MIN and MAX to sort out dates.
- Microsoft recommends not using the "MD" value for unit because it "may result in a negative number, a zero, or an inaccurate result".
Download 200+ Excel Shortcuts
Get over 200 Excel shortcuts for Windows and Mac in one handy PDF.