How to Add Days to Date in Google Sheets

There may be a number of situations that require you to add days to a date in your worksheet. You might want to add a certain number of days up to a delivery date or add a security period of a few days to a given date. 

Whatever your purpose, Google Sheets add days to date is really easy. 

In this tutorial we will show you two ways to add days to a date in Google Sheets:

  • Adding a date by value or from a cell reference
  • Adding a date using the DATE function

In the end, we will also show you a neat trick to add days to the current date, depending on the date the worksheet is opened.

Note: This tutorial also works exactly the same if you are looking to add days to date in Excel.

Two Ways to Add Days to a Date in Google Sheets

To understand how to add days to a date, we are going to consider the following list of dates:

add days to dates google sheets

Now let us take a look at the two ways to add a given number of days to these dates.

Option 1: Adding Days to a Date by Value in Google Sheets

Let’s say we want to add 10 days to each of the dates. In that case, all we need to do is use the formula:

=date+number_of_days

So if you want to add 10 days to the date “06/5/2021”, your formula would be:

=“06/05/2021”+10

Don’t forget to format the cell to the DATE format, or you will end up getting just a number, like this:

google sheets add days to date

To convert the cell into the DATE format, navigate to Format->Number->Date

google sheets add days to date

Now coming back to our original dataset. Let us look at the steps needed to add 10 to all the dates in column A:

  1. In the first cell (B2), type the formula: =A2+10, followed by the return key
  2. Drag the fill handle down to copy the formula to all the other cells of column B

All your dates should now have 10 days added to them. 

google sheets add days to date

As you can see, all we needed to do was simply add the number of days, like we do in normal addition.

Let us take a look at another scenario where we need to add different numbers of days to each date, as shown below:

adding days to date google sheets

As you can see, we have each cell in column B tell us how many days we want to add to the corresponding date in column A. Let us see the steps needed to get our results in this case:

  1. In the first cell (C2), type the formula: =A2+B2, followed by the return key.
  2. Drag the fill handle down to copy the formula to all the other cells of column C.
adding days to date google sheets

That’s all there is to it! All we needed to do was add a reference to the cell containing the number of days to be added!

Explanation of the Formula

As you have surely noticed, we used a really simple addition formula to add the days to the dates, as if they were normal integers. The reason for this is that dates, in Google Sheets, are inherently represented as serial numbers. The serial starts from 1, which actually represents the date December 31, 1899. For each day after this date, the serial keeps increasing by 1.

So the date May 06, 2021 is actually serial 44322, because it is exactly 44,322 days after December 31, 1899. When you add days to a date in Google Sheets, it essentially adds this number to the serial number it represents. So when you add 10 days to 06/05/2021, what’s really happening is you are adding to the serial 44322.

44322+10 = 44332

This serial represents the date 16/05/2021, which is 10 days away from the original date!

What if I get a Serial Number as the Sum Instead of Date?

There may be cases where, instead of getting your result in a DATE format, you end up getting a serial number. This might happen if the cell containing your result is in a Number or Text format. 

To solve this problem, you can easily convert the serial number to the DATE format by navigating to Format->Number->Date

If you want the date to be displayed in a different format, then select Format->Number-> More Formats->More Date and Time Formats, and then select your required format from the ‘Custom Date and Time Formats’ window that appears.

Option 2: Adding Days to a Date using the DATE Function in Google Sheets

Another way in which you can add days to a date in Google Sheets is by using the DATE function. This method will be more complicated than the simple addition method explained in the previous section, but there might be cases where you may find this useful.

The method mainly involves breaking down your original date into month, day, and year and then adding the number of days you want to add to the number of days in the original date. 

In other words, if you have a date, say, 06/05/2021 in cell A2, and you want to add 10 days to the date, the formula you will use is:

=DATE(YEAR(A2),MONTH(A2),DAY(A2)+10)

Let’s break this down:

  • The DATE function is used to specify a value in the DATE format. Thus, whenever you use this formula, your result will automatically get converted to the DATE format without you having to explicitly format it from the main menu.
  • The date function accepts 3 integer parameters: the year number, the month number, and the day number. So the date 06/05/2021 is represented as DATE(2021,05,06).
  • The YEAR function extracts the year value of the date in cell A2. So YEAR(A2) in this case will return 2021.
  • The MONTH function extracts the month value of the date in cell A2. So MONTH(A2) in this case will return 5.
  • Similarly, the DAY function extracts the day value of the date in cell A2. So DAY(A2) in this case will return 6. When you add 10 to this result, you get 6+10=16.
  • Finally, the DATE function combines these three parameters (2021,5,16) and returns the date 16/05/2021!

You might be curious as to why we need the MONTH and YEAR functions when we only want to add 10 days to the original date. The reason for this is that the format of the DATE function requires all three parameters to perform the calculation.

You can use this method to even add months and years to your date. So, if you want to add, say, 1 year, 2 months, and 10 days to a date, you can easily use this formula by adding 1 to the first parameter, 2 to the second and 10 to the third. Your formula would then become:

=DATE(YEAR(A2)+1,MONTH(A2)+2,DAY(A2)+10)

Here’s what you would get as the result:

add days to dates google sheets

Adding Days to the Current Date in Google Sheets

Finally, let us take a look at a situation where you want to always add a specific number of days, for example, 10 days, to the current date, depending on when the Google Sheets file is opened. 

The TODAY function comes quite in handy when you need to use the current date, as per the local date and time settings on the user’s computer. 

So every time the user opens the file, the date changes to the current local date of the user in the DATE format.

If you want to always calculate the date 10 days after the current local date, you can add the number of days to the TODAY function as follows:

=TODAY()+10

The TODAY function is dynamic or ‘volatile’, so it recalculates automatically every time.

Final Notes

In this tutorial we showed you two ways in which you can add days to a date in Google Sheets. We also showed you how to add days to the current date, depending on when the user opens the file.

Note that all the above methods work the same way if you want to subtract days from a date too. All you need to do is replace the ‘+’ operation with a ‘-‘.

 

Spreadsheet Expert at Productivity Spot

Sumit is a Google Sheets and Microsoft Excel Expert. He provides spreadsheet training to corporates and has been awarded the prestigious Excel MVP award by Microsoft for his contributions in sharing his Excel knowledge and helping people.

Popular Posts