+ Reply to Thread
Results 1 to 6 of 6

Business Day

  1. #1
    Registered User
    Join Date
    01-31-2006
    Posts
    19

    Unhappy Business Day

    In column A = Pick Up Date
    In column B = Return Date

    Column C = calculate if column the businessday. If days are 5 days or under, blank. If more than 5 days, indicate the how many days starting on the 6 day.

  2. #2
    Valued Forum Contributor
    Join Date
    03-25-2004
    Location
    Boston, MA US
    Posts
    1,094
    =IF(NETWORKDAYS(A2,B2,G1:G10)>5,NETWORKDAYS(A2,B2,G1:G10),"")

    Where G1:G10 are your holidays. If no holidays then omit the G1:G10 from the NETWORKDAYS functions.

    HTH

    Steve

  3. #3
    Nick Hodge
    Guest

    Re: Business Day

    Dannyboy

    How about

    =IF(NETWORKDAYS(A2,B2)<6,"",NETWORKDAYS(A2,B2))

    You will need to load the analysis toolpak (Tools>Add-ins...) to get the
    networkdays function. This works with weekends, you will need to use the
    last 'holidays' optional parameter to do other than this

    --
    HTH
    Nick Hodge
    Microsoft MVP - Excel
    Southampton, England
    www.nickhodge.co.uk
    [email protected]HIS


    "dannyboy213" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > In column A = Pick Up Date
    > In column B = Return Date
    >
    > Column C = calculate if column the businessday. If days are 5 days or
    > under, blank. If more than 5 days, indicate the how many days starting
    > on the 6 day.
    >
    >
    > --
    > dannyboy213
    > ------------------------------------------------------------------------
    > dannyboy213's Profile:
    > http://www.excelforum.com/member.php...o&userid=31032
    > View this thread: http://www.excelforum.com/showthread...hreadid=517018
    >




  4. #4
    Registered User
    Join Date
    01-31-2006
    Posts
    19
    I want the formula to start counting on the 6th day. So it the total days is 6 day, I want it to show "1". on the 7th as "2" as so on.

  5. #5
    Dominic
    Guest

    RE: Business Day

    dannyboy,

    Not sure if your question has to do with "Business Day(s)" (Mon-Fri) or not.
    If so, see the earlier two posts.

    If you don't care about business days, how about:

    =If((b1-a1)<6,"",(b1-a1)-5)

    HTH

    "dannyboy213" wrote:

    >
    > In column A = Pick Up Date
    > In column B = Return Date
    >
    > Column C = calculate if column the businessday. If days are 5 days or
    > under, blank. If more than 5 days, indicate the how many days starting
    > on the 6 day.
    >
    >
    > --
    > dannyboy213
    > ------------------------------------------------------------------------
    > dannyboy213's Profile: http://www.excelforum.com/member.php...o&userid=31032
    > View this thread: http://www.excelforum.com/showthread...hreadid=517018
    >
    >


  6. #6
    Nick Hodge
    Guest

    Re: Business Day

    Dannyboy

    Try

    =IF(NETWORKDAYS(A2,B2)>5,NETWORKDAYS(A2,B2)-5,"")


    --
    HTH
    Nick Hodge
    Microsoft MVP - Excel
    Southampton, England
    www.nickhodge.co.uk
    [email protected]HIS


    "dannyboy213" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > I want the formula to start counting on the 6th day. So it the total
    > days is 6 day, I want it to show "1". on the 7th as "2" as so on.
    >
    >
    > --
    > dannyboy213
    > ------------------------------------------------------------------------
    > dannyboy213's Profile:
    > http://www.excelforum.com/member.php...o&userid=31032
    > View this thread: http://www.excelforum.com/showthread...hreadid=517018
    >




+ 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