Skip to main content

Date formula page

Add Days to Date Formula

Use simple addition when due dates or follow-up dates are a fixed number of calendar days after a start date.

Best for

Add days to a date in Excel or Google Sheets.

What it returns

If A2 is 2026-01-01, the result is 2026-01-08.

Copy formulas

Excel formula
=A2+7
Google Sheets formula
=A2+7
Excel / Google Sheets difference

Excel and Google Sheets store real dates as serial values, so adding or subtracting an integer moves by calendar days and includes weekends.

Example data

Start DateEnd DateHolidayResult
2026-01-012026-01-312026-01-1930
2026-02-102026-03-1230
1990-05-202026-05-2036
What it returns

If A2 is 2026-01-01, the result is 2026-01-08.

How the formula works

  • One day equals 1 in spreadsheet date math.
  • Adding 7 moves the date forward by seven calendar days.
  • Use WORKDAY if weekends and holidays should be skipped.
Syntax pieceRole in the formula
A2The real start date serial to move from.
+7The calendar-day offset; use a negative number to move backward.
Result formatThe output cell should use a date format so the serial result displays as a date.

Verified examples

Add seven calendar days
=A2+7

Excel: Enter 2026-01-01 in A2. Returns: 2026-01-08

Subtract seven calendar days
=A2-7

Google Sheets: Enter 2026-01-01 in A2. Returns: 2025-12-25

Cross into the next month
=A2+3

Excel: Enter 2026-01-30 in A2. Returns: 2026-02-02

Common errors and fixes

IssueLikely causeFix
Adding days returns #VALUE!A2 contains text that looks like a date rather than a real date serial.Convert A2 to a spreadsheet date before using arithmetic.
The result appears as a number such as 46023The arithmetic returned a valid date serial but the result cell is formatted as General or Number.Format the result cell as Date.
The result lands on a weekendDate arithmetic counts calendar days and does not skip Saturday, Sunday, or holidays.Use WORKDAY when the offset must skip non-working days.

When not to use this formula

  • Do not use direct date addition when weekends or a holiday list must be excluded from the date calculation.

Alternatives

AlternativeWhen to use it
Next Business Day FormulaUse when the result must skip weekends and listed holidays.
Add Months to Date FormulaUse when the offset is measured in calendar months rather than days.

Related formulas

Official references

FAQ

What does adding 1 to a date mean?

It moves the date forward by one calendar day, regardless of whether that day is a weekend.

How do I skip weekends and holidays?

Use WORKDAY with a positive or negative workday offset and an optional holiday range.