Networkdays excluding Holidays with nested ifs?

Just_Pat

New Member
Joined
Sep 27, 2018
Messages
10
Office Version
  1. 2016
Platform
  1. Windows
Hello all,

I don't think my issue is as complicated as some of the ones I've seen on this site but i think my lack of understanding in the formula is causing me problems.

I was instructed to gather some metrics using data from out ticketing system. This is where i am running into problems, I need to find out how many work days away from target was the ticket completed. Our ticketing system uses 2 separate columns for target date one for HR related tickets the other for all the rest. I managed to get it to a point where i can get the amount of days between the dates using the formula bellow but i don't know where i would insert the NETWORKDAYS and Holidays portion.

here is an example:

ABCD
1Target DateHR Target dateCompleted DateDays from Target
203/21/201805/03/201843
304/10/201805/03/2018-5

<tbody>
</tbody>

Current formula: =IF(B1="",C1-A1,IF(A1="",C1-B1))

I don't know if there is a better way of doing this so I will gladly accept any assistance you can provide.

Thanks in advance
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Your formula would look something like this:
Code:
[COLOR=#333333]=IF(B1="",NETWORKDAYS(A1,C1,Z1:Z10),IF(A1="",[/COLOR][COLOR=#333333]NETWORKDAYS(B1,C1,Z1:Z10)[/COLOR][COLOR=#333333]))[/COLOR]
where Z1:Z10 is your range of holidays (adjust as needed).

See: https://support.office.com/en-us/article/networkdays-function-48e717bf-a7a3-495f-969e-5005e3eb18e7

Also note that if you have both A1 and B1 populated, you are going to get an error, as you have not specified what you want to happen in that situation (so it would go to the optional FALSE argument of that second IF, which you have not populated).
 
Last edited:
Upvote 0
Awesome this works exactly as you said and your powers of prediction are very good. In my mind i could not imagine a scenario where both A1 and B1 would be filed but i was proven wrong, turns out we have special change type requests that use both dates. I guess i would just need to add NETWORKDAYS(A1,C1,Z1:Z10) somewhere at the end?
 
Upvote 0
Try this simplification:
Code:
[COLOR=#333333]=NETWORKDAYS(IF(A1="",B1,A1),C1,Z1:Z10)[/COLOR]
In this case, if A1 is populated, it will use A1 (regardless of what B1 is).
It will only use B1 if A1 is blank.
 
Upvote 0
Solution
Try this simplification:
Code:
[COLOR=#333333]=NETWORKDAYS(IF(A1="",B1,A1),C1,Z1:Z10)[/COLOR]
In this case, if A1 is populated, it will use A1 (regardless of what B1 is).
It will only use B1 if A1 is blank.

Wow this works perfectly well thank you for you help i think i was over complicating things a bit.
 
Upvote 0

Forum statistics

Threads
1,215,813
Messages
6,127,031
Members
449,355
Latest member
g wiggle

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