+ Reply to Thread
Results 1 to 3 of 3

How do you calculate workdays if Saturday is a workday?

Hybrid View

  1. #1
    Tracy Parish
    Guest

    How do you calculate workdays if Saturday is a workday?

    I need to calculate the amount of business days from a start date including
    Saturday as a business day. Example: 5 business days starting Wednesday. In
    WORKDAY it would be the next Wednesday, in Date plus 5 it would be the
    following Monday. The correct answer is Tuesday.

  2. #2
    Harlan Grove
    Guest

    Re: How do you calculate workdays if Saturday is a workday?

    Tracy Parish wrote...
    >I need to calculate the amount of business days from a start date including
    >Saturday as a business day. Example: 5 business days starting Wednesday. In
    >WORKDAY it would be the next Wednesday, in Date plus 5 it would be the
    >following Monday. The correct answer is Tuesday.


    If you mean you have 5 workdays, Tuesday through Saturday, just
    subtract 1 from beginning and ending dates and use NETWORKDAYS (in the
    Analysis ToolPak).

    If you mean you have 6 workdays each week, count the number of days
    that aren't Sundays.

    =SUMPRODUCT(--(WEEKDAY(ROW(INDEX($1:$65536,B,1):INDEX($1:$65536,E,1)))<>1))

    where B represents the beginning date and E the ending date.


  3. #3
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,681
    If you have a date in A1 and a number of workdays to add in B1...

    =INT(B1/6)*7+A1+MOD(B1,6)+INT((WEEKDAY(INT(B1/6)*7+A1)-2+MOD(B1,6))/6)

+ 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