Formula - First of month following # of days

vwachieve

New Member
Joined
Dec 30, 2008
Messages
16
I'm trying to figure out how to create a formula to show result of the following;

60 days from date and first of the following month.

For instance, 6/17/08 + 60 days and the first of the following month would be 9/01/08.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Hi and welcome to the board,

If you install the Analysis Toolpak then the below will do what you require;

=EOMONTH(A1+60,0)+1
 
Upvote 0
Without using Analysis ToolPak functions try

=DATE(YEAR(A1+60),MONTH(A1+60)+1,1)

or, here's one I don't recommend.......but it'll give you the correct result ;)

=A1+100-DAY(A1+60)-DAY(A1+99-DAY(A1+60))
 
Upvote 0
Hi vw, welcome to the board.

Maybe something like this (assumes target date is in A1)
Code:
=eomonth(A1+60,0)+1
You need the Analysis Toolpak Add In to be activated to use eomonth.
 
Upvote 0
Also, bear in mind that if February falls within the 60 days, you might get some unexpected results . . . .
 
Upvote 0
I don't have the Aanlysis ToolPak function, so the solutions without using the toolpak work best for me.

They all worked................


Thank you everyone for your assistance!

VW
 
Upvote 0
Tools, AddIns, should give you a list of Add Ins which are available, including the Analysis Toolpak.

Put a tick next to it, and OK it.
 
Upvote 0

Forum statistics

Threads
1,218,141
Messages
6,140,737
Members
450,307
Latest member
Jatin Singhal

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top