View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ryguy7272 ryguy7272 is offline
external usenet poster
 
Posts: 2,836
Default add 10 days to a date

=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--
--
RyGuy


"JE McGimpsey" wrote:

One way:

A1: 4/4/2007
A2: =A1+10

format A2 as a date

In article ,
starman1 wrote:

I need to add 10 days to a date. for example 4/4/2007 plus 10 equals
4/14/2007