Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How can I add 5 yrs to an existing date using a formula?
Current Date Desired Date 09/25/2007 09/25/2012 Thanks for your time.... |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
A1: Current Date B1: =DATE(YEAR(A1)+5,MONTH(A1),DAY(A1)) In article , mazalam wrote: How can I add 5 yrs to an existing date using a formula? Current Date Desired Date 09/25/2007 09/25/2012 Thanks for your time.... |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=DATE(YEAR(G3)+5,MONTH(G3),DAY(G3))
-- Don Guillett Microsoft MVP Excel SalesAid Software "mazalam" wrote in message ... How can I add 5 yrs to an existing date using a formula? Current Date Desired Date 09/25/2007 09/25/2012 Thanks for your time.... |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=DATE(YEAR(A1)+5,MONTH(A1),DAY(A1))
-- David Biddulph "mazalam" wrote in message ... How can I add 5 yrs to an existing date using a formula? Current Date Desired Date 09/25/2007 09/25/2012 Thanks for your time.... |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
With
A1: (current date) This formula won't get tripped up by a 29-Feb (leap year) start date: =MIN(DATE(YEAR(A1)+5,MONTH(A1)+{0,1},DAY(A1)*{1,0} )) If today is 29-Feb-2000, the formula returns: 28-Feb-2005 -------------------------- Regards, Ron (XL2003, Win XP) Microsoft MVP (Excel) "mazalam" wrote in message ... How can I add 5 yrs to an existing date using a formula? Current Date Desired Date 09/25/2007 09/25/2012 Thanks for your time.... |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding date for filename | Excel Discussion (Misc queries) | |||
Adding a month to a date | Excel Discussion (Misc queries) | |||
Adding a date to calender to automatially generate another date? | Excel Worksheet Functions | |||
Adding a line after a date | Excel Discussion (Misc queries) | |||
Adding a date and time | Excel Worksheet Functions |