+ Reply to Thread
Results 1 to 9 of 9

NETWORKDAYS (Including Saturday)

  1. #1
    Registered User
    Join Date
    08-07-2006
    Posts
    31

    NETWORKDAYS (Including Saturday)

    Hi Folks

    I know that NETWORKDAYS is used to count the number of days between a range excluding Saturday & Sunday, but what if I wanted to exclude only Sunday?

    Cheers.

    Chard

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898
    Try:

    =SUMPRODUCT(--(TEXT(ROW(INDIRECT(A1&":"&B1)),"dddd")<>"Sunday"))

    Where A1 and B1 house the From/To dates
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    08-07-2006
    Posts
    31
    Thanks mate!

  4. #4
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699
    Here's another way.....

    =B1-A1+1-INT((8-WEEKDAY(B1)+B1-A1)/7)

  5. #5
    Forum Expert
    Join Date
    01-12-2007
    Location
    New Jersey
    Posts
    2,127
    Quote Originally Posted by NBVC
    Try:

    =SUMPRODUCT(--(TEXT(ROW(INDIRECT(A1&":"&B1)),"dddd")<>"Sunday"))

    Where A1 and B1 house the From/To dates
    That's an interesting formula. I tried to disect it to figure out how it works, but I failed. Any chance you could give a brief explanation on what is happening there?

  6. #6
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898
    Quote Originally Posted by BigBas
    That's an interesting formula. I tried to disect it to figure out how it works, but I failed. Any chance you could give a brief explanation on what is happening there?
    Hi BigBas...

    I cannot take all the credit for that formula... I found the initial formula at this place a while ago... http://groups.google.ca/group/micros...cb2f5f2dff5d4c

    written by Jason Morin.

    I just fiddled with it to suit the OP's specific needs here...

    Have a look at the link above. You should be able to get the just of it from there. I am not really a good explainer, so hopefully that link helps.

    If you need more clarification, please re-post.

  7. #7
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699
    Assuming A1 is today's date and B1 is 10 days later then this part

    INDIRECT(A1&":"&B1)

    will give

    39225:39235

    (because Today's date serial is 39225)

    then ROW(39225:39235)

    will give the array

    {39225;39226;39227;39228;39229;39230;39231;39232;39233;39234;39235}

    i.e. each of the date serials for every date in the range

    TEXT function then converts these to

    ={"Wednesday";"Thursday";"Friday";"Saturday";"Sunday";"Monday";"Tuesday";"Wednesday";"Thursday";"Friday";"Saturday"}

    and SUMPRODUCT counts those that aren't Sundays, giving 9 for my example.

    You could also use the WEEKDAY function, i.e.

    =SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(A1&":"&B1)))<>1))

    although both iof these formulas are more expensive, computationally, than my alternative above, which I can even simplify to:

    =B1-A1-INT((1-WEEKDAY(B1)+B1-A1)/7)

    Note: unless your using Excel 2007 the SUMPRODUCT formulas can work with dates beyond 5th June 2079 because ROW function fails when the date serial goes beyond maximum row number, 65536

  8. #8
    Forum Expert
    Join Date
    01-12-2007
    Location
    New Jersey
    Posts
    2,127
    Both NBVC and DaddyLongLegs:

    Thanks for the explanation and the links. I understood each part of the formula individually, but I failed to compute the dates as their serial numbers. For that reason, INDIRECT(4/15/07:4/21/07) did NOT make much sense to me.

    Now, it is much clearer.

  9. #9
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898
    Quote Originally Posted by BigBas
    Both NBVC and DaddyLongLegs:

    Thanks for the explanation and the links. I understood each part of the formula individually, but I failed to compute the dates as their serial numbers. For that reason, INDIRECT(4/15/07:4/21/07) did NOT make much sense to me.

    Now, it is much clearer.
    You're welcome, BigBas

    and thanks daddylonglegs for explaining it better than I could.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1