Inside The Web
    Facebook Twitter Instagram
    Inside The Web
    • Office
      • Excel
      • Ms Word
      • OneDrive
      • Google Docs
      • Google Sheets
      • Google Drive
    • Email
      • Gmail
      • Outlook
      • Emal Etiquette
    • Office Etiquette
    • Productivity
    Inside The Web
    Home»Office»Google Sheets»How to Add Days to Date in Google Sheets

    How to Add Days to Date in Google Sheets

    Asmi DhakalBy Asmi DhakalDecember 18, 2023 Google Sheets 3 Mins Read

    When dealing with dates like deadlines, you will more often find the need to extend them by a few days. You can simply use the plus operator or SUM function to add days to date.

    To add days by months or years as well, use the DATE function. Similarly, if you want to add only working days excluding holidays, use the WORKDAY function.

    Use Plus Operator to Add Days

    The plus operation (+) sums up two or more values. As dates are assigned a numeric serial key, Sheets can perform arithmetic operations like addition on date values.

    Let’s use the plus operator to add days to the dates.

    using plus operator

    Use SUM Function

    The SUM function is a dedicated Google Sheets function to add values. You may also use the SUM function instead of the plus operator to add days to dates in Google Sheets.

    Syntax:
    
    =SUM(value1,[value2],...)

    Let’s add up the same dates as before using the SUM operator.

    SUM function Google sheets

    Add Years, Months, and Days to a Date with DATE Function

    Use the DATE function to add days if you’ve separated your dates by year, month, and day. The DATE function will not only combine your dates, but also allow you to add values by year, month, and day.

    Syntax:
    
    =DATE(year,month,day)

    Take a look at this spreadsheet:

    add days when dates are separated

    We’ve separated the dates by year, month, and day in columns A, B, and C, respectively. In column D, we’ve entered the number of days we want to add to the date.

    Here’s the formula we entered in Column E:

    =DATE(A2,B2,C2+D2)
    DATE function google sheets

    If I had to increase the date by months or years, I would simply add more values in the year and month section.

    In the same data set, let’s increase the dates by 1 year and 7 months:

    =DATE(A2+1,B2+7,C2)
    Add years and months

    Add Only Working Days to Date

    Syntax:
    
    =WORKDAY(start_date, num_days, [holidays])

    The WORKDAY function comes in pretty handy when managing business deadlines. When adding days to dates, WORKDAY excludes Sundays and Saturdays as they’re usually off days. Additionally, you can add more dates you wish to exclude when adding days.

    In the following data table, I have 10 date values in column A and the extension in column B. In range E5:F7, I have a data table containing holidays.

    Deadline for workdays

    I want to calculate the new deadline, excluding off days. The off-days include the weekends, Christmas, and New Year’s Day.

    In cell D2, here’s the formula I entered to generate the new deadline:

    =WORKDAY(A2,B2,$F$6:$F$7)
    WORKDAY function

    Add Days Based on a Condition

    Say, you only want to extend deadlines for employees who attended a conference. To set such conditions, use the IF function.

    Syntax:
    
    =SUMIF(logical_expression, value_if_true, [value_if_false])

    In column B, I have the original deadlines. Employees who attended the conference have been marked present in column C.

    Add dates with condition

    Let’s extend the deadline by two days for those employees who attended the conference:

    =IF(D2="Present",B2+2,B2)
    SUM function with condition

    Add Days to the Current Date

    Say, you’re creating a to-do list and want to set the deadline for the next 4 days. You can use the TODAY function to generate today’s date, then add days using the plus operator.

    Here’s the to-do list I’ve created for the week:

    To do list

    In column C4:C13, I’ve set the days required for each task. To create a deadline, here’s the formula I entered and then applied to the entire column:

    =TODAY()+C4
    TODAY function to add days

    I have also covered a guide to add days to dates in Excel. Don’t forget to check it out!

    Asmi Dhakal

      Asmi is a content writer specializing in MS Office. She loves writing Excel-related content to assist other users to learn their way around the program. She started using Excel when she first entered the industry as a marketing intern. Soon, she realized that learning the often-overlooked spreadsheet program was no piece of cake. In her articles, she attempts to brief out complex topics to help beginner to intermediate-level Excel users. Asmi uses Excel for everything, including creating a grocery list to managing her personal finance. She’s a bit dramatic when it comes to the Flash Fill feature; so much so that could write a eulogy out of it. When she’s not working, you’ll find her learning a new recipe, or cleaning up her mess (out of the failed recipe).

      Related Posts

      Google Sheets By Jabin Manandhar

      9 Ways to Fix Google Sheets Not Working

      Google Sheets By Asmi Dhakal

      How to Delete Every Other Row in Google Sheets

      Google Sheets By Nisha Gurung

      How to Highlight Duplicates in Google Sheets

      Add A Comment
      Table of ContentsToggle Table of ContentToggle
      • Use Plus Operator to Add Days
      • Use SUM Function
      • Add Years, Months, and Days to a Date with DATE Function
      • Add Only Working Days to Date
      • Add Days Based on a Condition
      • Add Days to the Current Date
      • Home
      • About Us
      • Privacy Policy
      © 2025 Inside The Web

      Type above and press Enter to search. Press Esc to cancel.