Legal Dates Calculation?

KZ303

New Member
Joined
Mar 28, 2015
Messages
6
I'm using Excel to calculate dates in a legal setting, but can't figure out how to: 1) Calculate 1 month or 1 year from now, while 2) NOT returning holidays or weekends. I need to push the date forward one day in those instances, so: If one month from now = Sunday, the result should go to Monday, unless Monday is a holiday, in which case, it needs to show Tuesday.

I have it figured out for weeks/days out, but just can't figure out how to get the right results for months/years out.

Showing my Work:
This is the best I've come up with for months/years, but I haven't figured out how to exclude holidays or weekdays from the results: =EDATE(B3,3) [B3 = the present date, 3 is the number of months I'm adding.]


This formula works great for weeks/days: =WORKDAY(B1+(7-1),1,holidays) [B1 = the present date, 7 days added, excluding holidays in the results.]


Any help is greatly appreciated!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Welcome to the board.

=WORKDAY(EDATE(A1,1) - 1, 1, Holidays)
 
Upvote 0
For years just use multiples of 12 in the same formula, e.g. 5 years

=WORKDAY(EDATE(A1,5*12) - 1, 1, Holidays)
 
Upvote 0

Forum statistics

Threads
1,214,430
Messages
6,119,454
Members
448,898
Latest member
drewmorgan128

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