How to Add 7 Days to a Date in Excel

If you just need to add 7 days to a date in excel and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: use =EDATE(A2, 3) to add three months, =EDATE(A2, 12*2) for two years, and plain arithmetic =A2+30 for days.

On this page7
ƒxAdd or Subtract DatesLive

Negative values subtract. Month steps clamp the day, so 31 Jan + 1 month is 28 Feb.

Resulting date
2026-02-28

Weekday: Saturday

End of that month
2026-02-28
=EDATE(A2,B2) · =EOMONTH(A2,0)
=EDATE(A2, 3)
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

Dates in Excel are serial numbers, so adding days is ordinary arithmetic: =A2+30. Months and years are not, because months have different lengths — that is what EDATE is for. =EDATE(start_date, months) moves the date by whole months and clamps to the end of the month when the day does not exist, so 31 January plus one month is 28 February, not 3 March. EOMONTH does the same jump but always lands on the last day of the target month. Negative arguments subtract. The result comes back as a serial number, so format the cell as a date afterwards. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. For “add 7 days to a date in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected cells change, and only then apply the same setup to the full sheet. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That is what makes a layout choice that keeps the sheet readable and sortable useful in real work: repeatable, auditable, and not dependent on memory or luck.

A worked example

A2 holds 2026-01-31. =EDATE(A2,1) returns 2026-02-28 — EDATE clamps rather than overflowing. =EDATE(A2,-2) returns 2025-11-30. Two years on: =EDATE(A2,24) gives 2028-01-31. For the last day of the month three months out, =EOMONTH(A2,3) gives 2026-04-30. Adding days needs no function: =A2+45 is 2026-03-17. Adding working days instead: =WORKDAY(A2,45) skips weekends, and a third argument takes a range of holidays. Renewal dates, payment terms, contract ends and review cycles are all "start date plus N months", and the difference between EDATE and adding 30 is a rolling error that shows up as an off-by-a-few-days invoice. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. The short version of “add 7 days to a date in excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • Adding 30 or 365 as an approximation of a month or a year, which drifts and breaks on leap years.
  • Expecting 31 January + 1 month to be 3 March; EDATE clamps to 28 or 29 February by design.
  • Leaving the result as General format and reporting a five-digit serial number.
  • Feeding EDATE a date held as text, which returns #VALUE! — convert it with DATEVALUE or Text to Columns first.
  • Using EDATE when the requirement is "the last day of the month", which is EOMONTH's job.

Frequently asked questions

How do I add months to a date in Excel?

=EDATE(A2, 3) adds three months to the date in A2. Use a negative number to subtract, and format the result cell as a date.

How do I add years to a date?

Multiply the months: =EDATE(A2, 12*2) adds two years. =DATE(YEAR(A2)+2, MONTH(A2), DAY(A2)) also works but overflows on 29 February.

What happens on the 31st?

EDATE clamps to the last valid day of the target month, so 31 January plus one month is 28 February (29 in a leap year), not 3 March.

How do I add only working days?

=WORKDAY(A2, 10) adds ten working days, skipping Saturdays and Sundays. Pass a range of holiday dates as the third argument to skip those too.

Other ways people ask this

This is also commonly searched as “excel fill with weekly 7 day date range”, “add 7 days to date in excel” and “add 7 days to a date in excel”. They describe the identical operation, so you are in the right place no matter how you phrased it.

Why do people search for this in so many different ways?

Because the same task has many names. “excel fill with weekly 7 day date range”, “add 7 days to date in excel”, “add 7 days to a date in excel” all point at the one operation explained on this page, which is why they all lead here.