NETWORKDAYS function

ProjectGuy

New Member
Joined
May 7, 2023
Messages
4
Office Version
  1. 365
Platform
  1. Windows
I am using this formula to show current networkday in each month, with out weekends and holidays minus one day.=IF(ISNUMBER(B6),NETWORKDAYS(C6,TODAY(),$H$3:$H$12),"Closed")-1
How do you make the formula quit counting at end of month? previous month cells are continuing to count past end of month. Also, future months show negative days which should show.
 

Attachments

  • Networkdays.PNG
    Networkdays.PNG
    55.2 KB · Views: 11

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Hi & welcome to MrExcel.
How about
Excel Formula:
=IF(ISNUMBER(B6),NETWORKDAYS(B6,C6,$H$3:$H$12),"Closed")-1
 
Upvote 0
Thanak you Fluff,
That works for previous months, but may shows total days. I need it to show the current day which is 4. now showing 19.
 
Upvote 0
Ok, how about
Excel Formula:
=IF(ISNUMBER(B6),NETWORKDAYS(B6,IF(MONTH(C6)=MONTH(TODAY()),TODAY(),C6),$H$3:$H$12),"Closed")-1
 
Upvote 1
Fluff you are Awesome!!
One more question. Is there away to have the forthcoming months to show zero until the calendar rolls to them?
 
Upvote 0
How about
Excel Formula:
=IF(B6<>"",IF(MONTH(B6)>MONTH(TODAY()),0,NETWORKDAYS(B6,IF(MONTH(C6)=MONTH(TODAY()),TODAY(),C6),$H$3:$H$12)-1),"Closed")
 
Upvote 0
Solution
That is perfect! thank you so much I really appreciate you helping me with this issue.

Just curious how would you invert the formula to count down?
 
Upvote 0

Forum statistics

Threads
1,214,984
Messages
6,122,601
Members
449,089
Latest member
Motoracer88

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