I looking for a fuction that show next month and not the current month. Cause
the formula I have show the current month which is "=TODAY()". So your help
will be appreciated.
What do you mean by "next month".
With the date in A1:
The following formula will show the NAME of the next month:
=CHOOSE(MONTH(A1),"Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","Jan")
The following formula will add one month to the date, but not go past the last
day of the subsequent month.
=edate(A1,1)
--------------------------
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.
------------------------------
Or, without installing the ATP:
=DATE(YEAR(A1),MONTH(A1)+1,DAY(A1))-
IF(DAY(DATE(YEAR(A1),MONTH(A1)+1,DAY(A1)))<DAY(A1),
DAY(DATE(YEAR(A1),MONTH(A1)+1,DAY(A1))))
--ron