Networkdays with a 4 day week?

Clare1805

New Member
Joined
Apr 14, 2008
Messages
39
Hi,

I need to calculate the number of working days between 2 dates assuming a 4 day week - is this possible?

Column A will have a list of future dates and in column B I need to work out the number of working days (Mon - Thurs) from Today() until the Column A date.

Any help much appreciated!
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Hi,

I need to calculate the number of working days between 2 dates assuming a 4 day week - is this possible?

Column A will have a list of future dates and in column B I need to work out the number of working days (Mon - Thurs) from Today() until the Column A date.

Any help much appreciated!

B2, just enter and copy down:

=SUMPRODUCT(ISNUMBER(MATCH(WEEKDAY(ROW(INDIRECT(TODAY()&":"&A2))),{2,3,4,5},0))+0)
 
Upvote 0
I am not sure....but try this:

=NETWORKDAYS.INTL(A5,E2,1)-SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(A5&":"&E2)),2)=5))

E2, is today's date.

Maybe this will work.
 
Upvote 0
Claire: Aladin is an expert and a master in excel. Coming from him, it's what you should try.
 
Upvote 0
Aladin's formula works for me, and Jborg's, but if you have Excel 2010 you can use NETWORKDAYS.INTL like this

=NETWORKDAYS.INTL(A2,TODAY(),"0000111")

[in "0000111" the zeroes signify the working days, 1 non-working days, and the string runs from Monday to Sunday]

....or in any version of excel you can use this formula

=SUM(INT((WEEKDAY(A2-{2,3,4,5})+TODAY()-A2)/7))
 
Upvote 0

Forum statistics

Threads
1,216,086
Messages
6,128,734
Members
449,466
Latest member
Peter Juhnke

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