Getting exact end date excluding sundays and holidays.

rehanemis

Board Regular
Joined
Aug 15, 2016
Messages
50
Hi,

Here is little problem. I would like to get end date using "workday" function. Actually I want the end results as.

Example:

Start Date: 11/15/2017
working days: 12
Holidays: 0
End Date should be: 11/28/2017

I want to count the starting date also like if working day is= 1 then end date should be 11/15/2017.

Any idea?
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)

Excel 2010
ABCD
1Starting DateWorking DaysHolidays:End Date:
211/15/201712011/28/2017
Sheet1
Cell Formulas
RangeFormula
D2=WORKDAY.INTL(A2-1,B2+C2,11)


You could eliminate the need for you Holidays column if you made a list of your holidays and used that feature of the WORKDAY.INTL function, so if your holidays were in Column H, you could do this instead:
=WORKDAY.INTL(A2-1,B2,11,$H:$H)


Excel 2010
ABCDEFGH
1Starting DateWorking DaysEnd Date:11/16/2017
211/15/20171211/29/2017
Sheet1
Cell Formulas
RangeFormula
C2=WORKDAY.INTL(A2-1,B2,11,$H:$H)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,244
Messages
6,170,976
Members
452,372
Latest member
Natalie18

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