Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
what's the simplest formula to add exactly a month to the next cell of a
series? In other words, enter a beginning date, and then have the formula next to it take that date and add one month. Thanks. -- Boris |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=DATE(YEAR(A1),MONTH(A1)+1,DAY(A1))
-- David Biddulph "BorisS" wrote in message ... what's the simplest formula to add exactly a month to the next cell of a series? In other words, enter a beginning date, and then have the formula next to it take that date and add one month. Thanks. -- Boris |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe:-
=DATE(YEAR(A1),MONTH(A1)+1,DAY(A1)) Mike "BorisS" wrote: what's the simplest formula to add exactly a month to the next cell of a series? In other words, enter a beginning date, and then have the formula next to it take that date and add one month. Thanks. -- Boris |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Boris
If the day of the month in the starting cell is always going to be less than29, then =DATE(YEAR(A1),MONTH(A1)+1,DAY(A1)) If it is always going to be the last day of the month, then use =DATE(YEAR(A1),MONTH(A1)+2,0) -- Regards Roger Govier "BorisS" wrote in message ... what's the simplest formula to add exactly a month to the next cell of a series? In other words, enter a beginning date, and then have the formula next to it take that date and add one month. Thanks. -- Boris |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
To add 1 month, but cater for that month having less days and not
over-spilling, =MIN(DATE(YEAR(A1),MONTH(A1)+{2,1},DAY(A1)*{0,1})) -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "BorisS" wrote in message ... what's the simplest formula to add exactly a month to the next cell of a series? In other words, enter a beginning date, and then have the formula next to it take that date and add one month. Thanks. -- Boris |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Another method is to use the 'EOMONTH(A1,1)' option?
-- Regards "BorisS" wrote: what's the simplest formula to add exactly a month to the next cell of a series? In other words, enter a beginning date, and then have the formula next to it take that date and add one month. Thanks. -- Boris |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The answer to your question is "No". I think you need to look at Excel help
to remind yourself what EOMONTH does. It doesn't do what the OP asked for. -- David Biddulph "Karver" wrote in message ... Another method is to use the 'EOMONTH(A1,1)' option? "BorisS" wrote: what's the simplest formula to add exactly a month to the next cell of a series? In other words, enter a beginning date, and then have the formula next to it take that date and add one month. Thanks. -- Boris |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date arithmetic: adding 1 month to prior end of month date | Excel Worksheet Functions | |||
Adding a month to a date | Excel Discussion (Misc queries) | |||
adding 3 entries per month | Excel Discussion (Misc queries) | |||
adding new month to chart | Charts and Charting in Excel | |||
Adding a month | Excel Worksheet Functions |