Using DATE function in Excel - formula examples to calculate dates

When it comes to calculating dates in Excel, DATE is the most essential function to understand. As you probably know, Excel does not keep the year, month and day for a date, nor does it explicitly store weekday information in a cell. Instead, Microsoft Excel stores dates as serial numbers and this is the main source of confusion.

Not all Excel date functions can recognize dates entered as text values, therefore it's not recommended to supply dates directly in calculations. Instead, you should use the DATE function to get a serial number representing the date, the number that Excel understands and can operate on.

Excel DATE function

The Excel DATE function returns the serial number that represents a certain date. It has the following arguments:

DATE(year, month, day)

Where:

Year - represents the year of the date.

Month - an integer representing the month of the year, from 1 (January) to 12 (December).

Day - an integer corresponding to the day of the month, from 1 to 31.

The DATE function is available in all versions of Excel 365 - Excel 2007.

DATE function - tips and notes

The DATE syntax looks crystal clear and straightforward on the surface. In practice, there may be some unobvious pitfalls that the below tips will help you avoid.

Year

Excel interprets the year argument according to the date system set up on your computer. By default, Microsoft Excel for Windows uses the 1900 system where January 1, 1900 is represented by the serial number 1. For more details, please see Excel date format.

  • If the year argument is between 1900 and 9999 inclusive, Excel uses exactly the value you supplied to create a date. For example, DATE(2015, 12, 31) returns December 31, 2015.
  • If the year argument is between 0 and 1899 inclusive, Excel adds the specified number to 1900. For example, DATE(100, 12, 31) returns December 31, 2000 (1900 + 100).
  • If the year argument is less than 0 or greater than 9999, a DATE formula will return the #NUM! error.

Tip. To avoid confusion, always supply four-digit years. For example, if you input "01" or "1" in the year argument, your DATE formula will return the year of 1901.

Month

  • If the month argument is greater than 12, Excel adds that number to the first month in the specified year. For example, DATE(2015, 15, 5) returns the serial number representing March 1, 2016 (January 5, 2015 plus 15 months).
  • If the month argument is less than 1 (zero or negative value), Excel subtracts the magnitude of that number of months, plus 1, from the first month in the specified year. For example, DATE(2015, -5, 1) returns the serial number representing July 1, 2014 (January 1, 2015 minus 6 months).

Day

As well as month, the day argument can be supplied as a positive and negative number, and Excel calculates its value based on the same principles as described above.

Tip. At first sight, supplying negative values in the month or day argument of the Excel DATE function may seem absurd, but in practice it may turn out quite useful, for example in the complex formula that converts a week number to a date.

Excel DATE formula examples

Below you will find a few examples of using DATE formulas in Excel beginning with the simplest ones.

Example 1. DATE formula to return a serial number for a date

This is the most obvious use of the DATE function in Excel.

For example, to return a serial number corresponding to 20-May-2015, use this formula:

=DATE(2015, 5, 20)

Instead of specifying the values representing the year, month and day directly in a formula, you can have some or all arguments driven by of other Excel date functions. For instance, combine the YEAR and TODAY to get a serial number for the first day of the current year.

=DATE(YEAR(TODAY()), 1, 1)

And this formula outputs a serial number for the first day of the current month in the current year:

=DATE(YEAR(TODAY()), MONTH(TODAY(), 1)
Using the DATE function in Excel to get a serial number representing a date

Tip. To display a date rather than a serial number, apply the desired Date format to the formula cell.

Example 2. How to return a date based on values in other cells

The DATE function is very helpful for calculating dates where the year, month, and day values are stored in other cells.

For example, to find the serial number for the date, taking the values in cells A2, A3 and A4 as the year, month and day arguments, respectively, the formula is:

=DATE(A2, A3, A4)
Excel DATE formula to return a date based on values in other cells

Example 3. DATE formula to convert a string or number to a date

Another scenario when the Excel DATE function proves useful is when the dates are stored in the format that Microsoft Excel does not recognize, for instance DDMMYYYY. In this case, you can use DATE in liaison with other functions to convert a date stored as a numeric string or number into a date:

=DATE(RIGHT(A2,4), MID(A2,3,2), LEFT(A2,2))
DATE formula to convert a string to a date

Example 4. Adding and subtracting dates in Excel

As already mentioned, Microsoft Excel stores dates as serial numbers and operates on those numbers in formulas and calculations. That is why when you want to add or subtract some days to/from a given date, you need to convert that date to a serial number first by using the Excel DATE function. For example:

  • Adding days to a date:=DATE(2015, 5, 20) + 15The formula adds 15 days to May 20, 2015 and returns June 4, 2015.
  • Subtracting days from a date:=DATE(2015, 5, 20) - 15The result of the above formula is May 5, 2015, which is May 20, 2015 minus 15 days.
  • To subtract a date from today's date:=TODAY()-DATE(2015,5,20)The formula calculates how many days are between the current date and some other date that you specify.

DATE formulas to add and subtract dates in Excel

If you are adding or subtracting two dates that are stored in some cells, then the formula is as simple as =A1+B1 or A1-B1, respectively.

For more information, please see:

Advanced Excel DATE formulas

And here are a few more examples where Excel DATE is used in combination with other functions in more complex formulas:

Using Excel DATE formulas in conditional formatting

In case you want not only to calculate but also highlight dates in your Excel worksheets, then create conditional formatting rules based on DATE formulas.

Supposing you have a list of dates in column A and you want to shade dates that occurred earlier than 1-May-2015 in orange and those that occur after 31-May-2015 in green.

The DATE formulas you want are as follows:

Orange: =$A2<DATE(2015, 5, 1) - highlights dates less than 1-May-2015

Green: =$A2>DATE(2015, 5, 31) - highlights dates greater than 31-May-2015
Using Excel DATE formulas in conditional formatting

For the detailed steps and more formula examples, please see How to conditionally format dates in Excel.

How to make date formulas in Excel with Date & Time Wizard

Though DATE is the main function to work with dates in Excel, a handful of other functions are available to tackle more specific tasks. You can find the links to in-depth tutorials at the end of this article.

Meanwhile, I'd like to present you our Date & Time Wizard - a quick and easy way to calculate dates in Excel. The beauty of this tool is that outputs the results as formulas, not values. Thus you have a kind of 'two birds, one stone' opportunity - get the result faster and learn Excel date functions along the way :)

The wizard can perform the following calculations:

  • Add years, months, weeks, days, hours, minutes and seconds to the specified date.
  • Subtract years, months, weeks, days, hours, minutes and seconds from the specified date.
  • Calculate the difference between two dates.
  • Get age from the birthdate.

For example, here's how you can add 4 different units in cells B3:E3 to the date in A4. The formula in B4 is built in real-time as you change the conditions:
Subtract dates in Excel using the Date & Time Wizard

If you are curious to explore other capabilities of the wizard, feel free to download an evaluation version of the Ultimate Suite below which includes this as well as 60 more time saving add-ins for Excel.

I thank you for reading and hope to see you on our blog next week!

Available downloads

Ultimate Suite 14-day fully-functional version (.exe file)

680 comments

  1. HELP! I just want to know if Excel has a way to make a column with each cell representing Week 1 - then the dates of that week for 2017. For example the cell would read: Week 1 - January 1-7 (or better if it was just work week, Jan 2-6). Can this be done??? Please help me.

  2. Hi There

    I am trying to calculate the number of days between two entries. I am using the following formula.

    =IF(F4='''',NETWORKDAYS(E4,TODAY()),NETWORKDAYS(E4,F4))

    The formula works but when I use a blank cell (F4) the formula stops working.
    Can anybody help please.

  3. hi i need to formula this.

    i have a start date lets say:

    start date : 1/9/2016
    i applied to be on leave for months

    what is the end date should be?

  4. I am working on a training matrix. I have a column with first aid. If it is past current date it should go red. The first aid is valid for 3 years I need it to go yellow 3 months before it is set to expire using date in column and not current date. So it it is valid it is green, if it is past due it is red and if it is 3 months before it turns red or past due it is yellow to warn me to get them trained. Any suggestions.

    Second column is training that is due annually. So red if past due, green if ok and yellow again three months before date in column's one year mark as a warning to get them re-certified.

    Can anyone help with these formulas. Any date formula tips for training matrix are welcome. Thanks

  5. I want to change this date format 1/1/2016 12:00:00 AM
    into fiscal years, 15-16, can anyone help.

  6. I'm trying to figure out when an employee is eligible for enrolment in our pension plan. I have the following:
    C3=start date with company
    D3=eligibility date=6 months after start date
    The plan didn't become effective until July 1, 2013 so I'm looking for a formula that says if C3 is less than or equal to July 1, 2013 then use July 1, 2013, if not then use C3 plus 6 months.
    Any help would be fantastic.

  7. If I have a start date and end date are as per Hijiri calendar, to check if it is expired or not so how i can apply this =If(today()>=A1,"Expired","Not Expired")

    i tried below function but nothing changes

    ype a date in Gregorian format and have Excel interpret it as Hijri date:
    Go to Custom Format and enter B2dd/mm/yyyy.
    The date will be displayed as Hijri date.

  8. hello i need to get some formulae to calculate data that falls under particular month in a sheet with different columns of date for eg.
    we got columns as
    customer address date1 date2 date3 date4
    gaurav india 1/4/15 24/5/15 21/7/15 19/8/15
    like this upto 12 date columns and there is no limit for the no. of rows.
    so i need some help if i want to get data for the month of may, it shows me this customer detail. really appreciate your response…. thanks

  9. Hello,
    You truly are incredible. I need to determine if a date in a range exists. If it exists then I would like it entered it into another cell. Is there a simple way to do this?
    Thank you!

  10. Hello! I have a project at work where a deficiency needs to be completed by 7 days after the original deadline. I am looking for a formula where a column is turned red after 7 days-does this exist?? :s

  11. Hi
    Please help. I'm subtracting two dates to calculate number of holidays taken. The two dates are in two separate columns with answer in the third column e.g.
    A12 Date leave started
    B12 Date leave ended
    C12 Formula answer with No of Days Leave Taken.

    The problem arises when someone takes 1 day's leave; my formula says 0 Days. For example:
    A12 Date leave started 21/05/2016
    B12 Date leave ended 21/05/2016
    C12 Formula answer with No of Days Leave Taken. Result is 0 days. I want it to say 1 day's leave taken.
    Thank you

  12. how do I find a date after some days of a specific date.
    for example,let installation date of a product is 5/15/2013
    and the life span of that product is 1500 days.how do I find out the replacement date of that product.is there any excel function for that.?

  13. How to calculate the date of retirement of an employee after completion of 60 years.

  14. Hi Ablebits,

    I need help on dates formatting. I have a list of dates as far as 2014 until today. I would like to highlight dates that are 30 days from the date in the cell, 60 days and 90 days. I've been Google-ing answers for days, but to no success. Please help.

  15. hai

    can somebody help how to make tabel for this appoitment date

    example;-

    date - MAIN DATE { 29-aug-2016(monday)}

    week month
    1. 05 sept 2016 26 sept 2016
    2. 12 sept 2016 31 oct 2016
    3. 19 sept 2016 28 nov 2016
    4. 26 sept 2016 26 dec 2016
    5. 03 oct 2016 30 jan 2017
    6. 10 sept 2016 27 feb 2017

    the week date i can do but the date for month i can't do
    b'coz the month date must +/- 3 day from main date (29 AUG 2016)...

    can somebody help me thanks..

  16. In answer to Stacie (83), I think

    =min(date1,date2)-30 should work if you format the cell as a date.

    I don't know if that will meet your needs, but the math seems to be good.

    HTH!

    Tom

  17. I'm sorry if this has been covered previously!

    I am calculating the number of days between two dates, using one column for the start date and a second column for the end date. the third column is the number of days between the two dates. All is well until the dates span the February/March period during leap year. In that case, the calculation is incorrect by a day. Is this a bug in the Excel "DAYS" function? Is there a way around it?

    Thanks!

    Tom

  18. Hello,

    I am trying to find a formula to calculate the following:

    Look at the date in cell A2
    Look at the date in cell A3
    Figure out which is the earliest date
    Then subtract 4 weeks (or 30 days) from the earliest date in either cell.

    Is this possible?

    Thanks!

  19. Hi , i am trying to convert a cell with the following text 1/18/2016 10:00:00 am to 2016/1/18 . but i cannot seem to make it work with datevalue. Kindly help ..

  20. Hello I am trying to identify due dates for training. We have several different trainings that are required, and they all have different frequencies (i.e. annual, bi-annual, semi-annual, etc). Is there a way to identify when the next due date would be if I have one column that has the date the training was taken, a column showing frequency (annual, semi-annual, etc.) and then a column with new due date?

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)