add 10 days to a date

  • Thread starter Thread starter Guest
  • Start date Start date
Actually, you just described the way to do it!

A1: 4/4/2007

This formula adds 10 days to that date:
B1: =A1+10
(Set the date format you need)

Is that something you can work with?
Post back if you have more questions.
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)
 
If say A1 is formatted as date and contains 4/4/2007 then =A1+10

Regards,
Stefi


„starman1†ezt írta:
 
=DATE(YEAR(A1)+1,MONTH(A1)+0,DAY(A1)+0) < -- Adds one year to the date in
cell A1
=DATE(YEAR(A1),MONTH(A1)+1,DAY(A1)+0) < -- Adds one month to the date in
cell A1
=DATE(YEAR(A1),MONTH(A1)+0,DAY(A1)+1) < -- Adds one day to the date in cell
A1


Hope it helps,
Ryan--
 
Back
Top