Thread: date + 6 months
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default date + 6 months

If you want G5 to add 6 months to F5, and G6 to add 6 months to *F6* (not to
G6 as you stated), then in G5 you use the formula
=DATE(YEAR(F5),MONTH(F5)+6,DAY(F5))
and copy it down the column.
--
David Biddulph

wrote in message
...
I have a list with dates in fields F5-F50 and want to automatically
populate G5-G50 with a date 6 months future. I am using
=DATE(YEAR(G1),MONTH(G1)+6,DAY(G1)) but how do I get it to progress
through the colums so that G5 picks up the date from F5 and adds 6
months, G6 picks up the date from G6 and so on.