![]() |
adding a month
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 |
adding a month
=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 |
adding a month
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 |
adding a month
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 |
adding a month
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 |
adding a month
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 |
adding a month
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 |
All times are GMT +1. The time now is 04:35 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com