How To Add A Month To A Date

tonguencheek

Board Regular
Joined
Apr 6, 2010
Messages
233
Hey all. I'm looking for a way to add a month to date so that it returns the same day of the next month, unless it falls on a weekend or holiday it would move to the next good business day.

So for example, if in A1 I have 06/10/2011, the formula in B2 would return 07/11/2011 (since 07/10 is a Sunday).

Thanks in advance!
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
If you list holiday dates somewhere on the worksheet, e.g. in H2:H10 then you can use that range in the WORKDAY function to exclude those too, i.e.

=WORKDAY(EDATE(A1,1)-1,1,$H$2:$H$10)

.....or name that range, e.g. holidays and use

=WORKDAY(EDATE(A1,1)-1,1,holidays)
 
Upvote 0

Forum statistics

Threads
1,224,582
Messages
6,179,670
Members
452,936
Latest member
anamikabhargaw

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