Count workdays only and holidays from another sheet

lachone

New Member
Joined
Jun 8, 2017
Messages
34
=NETWORKDAYS("E9","D3",'NON-SCHOOL DAYS'!A2:A31) *** I keep getting #VALUE! response ***
  • This is the formula I have in P9
  • E9 has the start date
  • D3 has the end date
  • Sheet named "Non-School Days" has the days school is out in cells A2 - A31
 
=NETWORKDAYS("E9","D3",'NON-SCHOOL DAYS'!A2:A31) *** I keep getting #VALUE! response ***
Hi, try removing the double quotes from the E9 and D3 references - i.e.

Excel Formula:
=NETWORKDAYS(E9,D3,'NON-SCHOOL DAYS'!A2:A31)
 
Upvote 0
Solution
It needs to be
Excel Formula:
=NETWORKDAYS(E9,D3,'NON-SCHOOL DAYS'!A2:A31)
Never put quotes round cell references, otherwise they will be treated as text.
 
Upvote 0
QUESTION...
If I want to find 10% of the result (to be in the same cell P9) how would I add that to the formula?
 
Upvote 0
Hi, simply multiply by 0.1 i.e.

Rich (BB code):
=NETWORKDAYS(E9,D3,'NON-SCHOOL DAYS'!A2:A31)*0.1
 
Upvote 0

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