NETWORKDAYS

S

Steve 51

I am using the NETWORKDAYS function to generate statistics for a report. The
problem I am having is that I have a requirement to turn around an activity
within one day from receipt of certain information - for example, if I
receive the information on Monday, I must turn around the response by
Tuesday. However, the function would calculate that as 2 net work days. If I
turn it around the same day, it calculates 1 net work day, even though my
statistic considers that less than one day.

Is there anyway to modify the functions so that same day activity = 0 net
work days, next day activity = 1 net work day, etc?
 
E

Elkar

What if you just subtract 1 from your formula:

=NETWORKDAYS(Start,End)-1

Or, another option would be to use the holidays portion of the function to
exclude the start date:

=NETWORKDAYS(A1,B1,A1)

Where A1 is your Start Date and B1 is your End Date. Thus, by considering
the Start Date a holiday, it won't be counted.

HTH
Elkar
 
T

T. Valko

Maybe this:

=IF(NETWORKDAYS(A1,B1)<=2,NETWORKDAYS(A1,B1)-1,NETWORKDAYS(A1,B1))

Or this:

=NETWORKDAYS(A1,B1)-(NETWORKDAYS(A1,B1)<=2)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top