+ Reply to Thread
Results 1 to 8 of 8

Help on a work schedule

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    02-27-2008
    Posts
    134

    Re: Help on a work schedule

    I summed up the hours above the date (filled in green)

    Is this what you are wanting?
    Attached Files Attached Files

  2. #2
    Forum Expert Palmetto's Avatar
    Join Date
    04-04-2007
    Location
    South Eastern, USA
    MS-Off Ver
    XP, 2007, 2010
    Posts
    3,978

    Re: Help on a work schedule

    Assuming your time input cells are formatted correctly ( I would use 24 hour time for clarity: e.g. 17:00 vs. 5:00 pm but it's your choice).

    This formula will calculate the hours worked:
    =(B13-B12)*24
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    08-19-2009
    Location
    Joplin, Missouri
    MS-Off Ver
    Excel 2003
    Posts
    4

    Re: Help on a work schedule

    I would love to use military time, but the Boss will not allow it. Thank you guys for trying Palmetto you are on the right track I just need it to work on a AM/PM schedule

  4. #4
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Help on a work schedule

    Palmetto's formula will work for you even if you use AM/PM as long as it is formatted as time and not text. However yours are formatted as (text 6a is not a valid time format). If you go through the trouble of converting them all (e.g. 6a to 6:00 AM), then starting in C12
    =IF(AND(ISNUMBER(B12),ISNUMBER(B13)),(B13-B12)*24,"")
    That can be dragged and copied to all your green cells. Does that work for you.
    Last edited by ChemistB; 08-19-2009 at 04:35 PM.
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  5. #5
    Registered User
    Join Date
    08-19-2009
    Location
    Joplin, Missouri
    MS-Off Ver
    Excel 2003
    Posts
    4

    Re: Help on a work schedule

    excellent work and great help guys, one last question what formula would I use to add the total hours scheduled for that week for each person?

  6. #6
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Help on a work schedule

    Well, your equation
    =C12+E12+G12+I12+K12+M12+O12
    works perfectly well.

    Or
    =SUM(IF(MOD(COLUMN(C:O),2)=1,C12:O12,0))
    Entered as an array (CNTRL SHFT ENTER)

    Or
    =SUMPRODUCT(--(MOD(COLUMN(C12:O12),2)=1),C12:O12)
    or
    placing a T in the appropriate columns (green) in row 11
    =SUMPRODUCT(--($C$11:$O$11="T"),C12:O12)
    Any of these work for you?

  7. #7
    Registered User
    Join Date
    08-19-2009
    Location
    Joplin, Missouri
    MS-Off Ver
    Excel 2003
    Posts
    4

    Re: Help on a work schedule

    I want to thank everyone for the help I was able to make the schedule with your help

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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