I need help with a formula that goes form cell to cell returning the next
month's date...
For example, in cell A10, I have current date "3/12/05" ... in cell A11,
I'd like to input a formula that will return "4/12/05" and so forth... What
formula can I use? ...
TIA!!!
LavaDude
=EDATE(A10,1)
However, any of the formulas can cause a problem if you are at the end of the
month. For example, if A10:= 31 Jan 2005, and you have the above formula in
A11 and drag it down, the results will be:
31-Jan
28-Feb
28-Mar
28-Apr
28-May
28-Jun
28-Jul
28-Aug
28-Sep
Where what you probably would want would be:
31-Jan
28-Feb
31-Mar
30-Apr
31-May
30-Jun
31-Jul
31-Aug
30-Sep
To get the latter, use a formula that always references back to your initial
date, such as:
A11: =edate($A$10,ROW()-10)
============================
If the EDATE function is not available, and returns the #NAME? error, install
and load the Analysis ToolPak add-in.
On the Tools menu, click Add-Ins.
In the Add-Ins available list, select the Analysis ToolPak box, and then click
OK.
If necessary, follow the instructions in the setup program.
==============================
--ron