#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default NETWORKDAYS

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?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 857
Default NETWORKDAYS

Hi,

Just subtract 1 from the result.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Steve 51" wrote:

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?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default NETWORKDAYS

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


"Steve 51" wrote:

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?

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default NETWORKDAYS

Maybe this:

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

Or this:

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

--
Biff
Microsoft Excel MVP


"Steve 51" wrote in message
...
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?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
networkdays JK Excel Worksheet Functions 5 May 7th 07 07:52 PM
NETWORKDAYS albertmb Excel Discussion (Misc queries) 3 March 13th 06 09:33 PM
Help on Networkdays Susan Hayes Excel Worksheet Functions 1 September 8th 05 03:34 AM
NETWORKDAYS Help rsteiner1 Excel Worksheet Functions 0 August 10th 05 07:08 PM
Networkdays? Steve Excel Discussion (Misc queries) 6 August 6th 05 01:53 AM


All times are GMT +1. The time now is 09:27 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"