+ Reply to Thread
Results 1 to 4 of 4

difference between two dates in working weeks(5 day weeks)

  1. #1
    Registered User
    Join Date
    02-11-2004
    Posts
    1

    difference between two dates in working weeks(5 day weeks)

    Hi all,

    im tryign to get the difference between two dates in working weeks (5 day weeks)

    eg
    A1
    28/10/2011

    A2
    18/08/2011

    =(A1-A2)/7 give us 10.14 which is wrong for what we need, we need it to be a 5 day week not 7 so should give us 10.2

    this do able?
    Thanks

  2. #2
    Valued Forum Contributor
    Join Date
    10-06-2008
    Location
    Norway
    MS-Off Ver
    2010
    Posts
    365

    Re: difference between two dates in working weeks(5 day weeks)

    Hi,
    =NETWORKDAYS(A2;A1)
    returns 52 workdays in the interval.

    =NETWORKDAYS(A2;A1)/5
    returns 10,40

    Sure this isn't what you're looking for?

  3. #3
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: difference between two dates in working weeks(5 day weeks)

    If the start date is exclusive of the calc then you should modify start date (or end date) accordingly given NETWORKDAYS is inclusive by nature:

    =NETWORKDAYS(A2+1,A1)/5

    would return 10.2 rather than 10.4

    Prior to XL2007 the use of NETWORKDAYS requires activation of the Analysis ToolPak Add-In (tools -> addins)

    note: delimiters differ pending your locale - this in unspecified - modify as required

  4. #4
    Valued Forum Contributor
    Join Date
    10-06-2008
    Location
    Norway
    MS-Off Ver
    2010
    Posts
    365

    Re: difference between two dates in working weeks(5 day weeks)

    Yes, thank you DonkeyOte. I should have noticed that startdate wasn't included in the example given (enddate-startdate)

+ 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