+ Reply to Thread
Results 1 to 21 of 21

If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP ASAP!

  1. #1
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP ASAP!

    Hello Everyone!

    Attached below you will see a picture of the work schedule I have created for the new quick service restaurant I am opening that serves gourmet sub sandwiches. I have run into a road block with trying to simply the readability of the schedule by adding manpower at the bottom. The man power section is a synopsis of how many people are on during critical times. I figured that an if formula would do the trick but I can't quite figure it out.

    The metrics are as follows: opening is anyone that is scheduled at 10:00 AM, lunch rush is anyone scheduled at 11:00 AM, afternoon is anyone that is scheduled at 2:00 PM, dinner rush is anyone scheduled at 5:00 PM, and closers is anyone scheduled until 10:00 PM. I want to be able to quickly look at that column for the day and know if we have enough people at certain times through out the day. Please let me know if this does not make sense.

    Any help is greatly appreciated!

    Thanks,

    Colton

    2gsiaeq.png
    Attachment 471058
    Last edited by colton14; 07-18-2016 at 11:39 AM.

  2. #2
    Forum Contributor Toonies's Avatar
    Join Date
    07-30-2009
    Location
    Newcastle, UK
    MS-Off Ver
    Excel 2016
    Posts
    503

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    can you post an example of you spreadsheet

    click advanced (next to quick post),
    scroll down until you see "manage file",
    click that and select "add files" (top right corner).
    click "select files" find your file, click "open" click "upload" click 'done" bottom right. click "submit reply"

    Once the upload is completed the file name will appear below the input boxes in this window.
    You can then close the window to return to the new post screen.

  3. #3
    Registered User
    Join Date
    06-15-2016
    Location
    here, there
    MS-Off Ver
    2010
    Posts
    59

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    Firstly an excel file that has been desensitized would be helpful so that we do not have to retype your information. since you have already shown a picture what you could do is a special copy and paste. Copy your information as normal and then do a paste as values. that being said I suspect you will need and index match in an array format with an if statement deciding which cells match the criteria you are wanting. If you upload your file I will try to show this.

  4. #4
    Forum Contributor Toonies's Avatar
    Join Date
    07-30-2009
    Location
    Newcastle, UK
    MS-Off Ver
    Excel 2016
    Posts
    503

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A


  5. #5
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    Just attached the spreadsheet. I hope this helps and thanks for all of the replies!
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    Where you guys able to view my spreadsheet?!

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    This is what Im starting with...
    =COUNTIF(D$8:D$29,10/24)
    However, would these same people also be included in the lunch spot, too?

    So, based on your sample file, would lunch rush be 3 (that started at 11 AM) or 6 (to include those that started at 10)?
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  8. #8
    Forum Contributor Toonies's Avatar
    Join Date
    07-30-2009
    Location
    Newcastle, UK
    MS-Off Ver
    Excel 2016
    Posts
    503

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    try this

    Please Login or Register  to view this content.
    Attached Files Attached Files

  9. #9
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    FDibbins, lunch rush would include those who started at 10am as well. It is showing man power numbers at each given point in the day to assist with making sure we do not have any under staffed time periods. I still need to incorporate the position each employee will work. Those include cook, cashier, prep, assembler, and maintenance. I was thinking about scheduling my employees to do each task weekly and breaking each position into its own category or in regards to daily, I would add a merged cell above the two shift hours that would have cook, cashier, prep, A, or M. What do you guys think? Any better suggestions?

  10. #10
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    I still need to incorporate the position each employee will work. Those include cook, cashier, prep, assembler, and maintenance.
    I dont see that, presumably you have not got that far yet?

    To include all staff up to a certain time...
    =COUNTIFS(D$8:D$29,"<="&11/24)
    Change the 11 to whatever hour you need
    You later expand on that to include worker types just by adding extra ranges/criterias

  11. #11
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    Thanks again for all of your help. I have not got that far yet but I will be implementing that right now. I will let you know how it goes. Thanks!

  12. #12
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Cool Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    Just got the schedule to look and function how I want it. Could you please show me or explain in more depth what you mean on how I can add job titles to the schedules now? I am trying to streamline everything about this schedule so that way I can have a manager complete it with little assistance. Once I proficiently add the job titles, I need to figure out the best way on creating week 2's schedule that rotates weekends with the first schedule as best as possible to keep everyone happy.

    I am ecstatic with the assistance I have received on this forum and I thank you very much!
    Attached Files Attached Files

  13. #13
    Forum Contributor Toonies's Avatar
    Join Date
    07-30-2009
    Location
    Newcastle, UK
    MS-Off Ver
    Excel 2016
    Posts
    503

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    try this, I,ve added a dropdown menu for employee tasks
    Attached Files Attached Files

  14. #14
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    That worked great! Please see my latest revisions and can you help me apply the same formula for the total shifts per day (SUMPRODUCT) to total positions for each given day? Thanks and it is starting to become a nice spreadsheet!
    Attached Files Attached Files

  15. #15
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    Bump. Almost done so can someone please help? Thanks!

  16. #16
    Forum Contributor Toonies's Avatar
    Join Date
    07-30-2009
    Location
    Newcastle, UK
    MS-Off Ver
    Excel 2016
    Posts
    503

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    try this - copy over

    Please Login or Register  to view this content.

  17. #17
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    Working on it now. Stay tuned.
    Last edited by colton14; 07-24-2016 at 12:50 PM.

  18. #18
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    Please see the attached excel file for my version of how to identify how many shifts of each job position are during lunch rush and dinner rush. You will notice that I have to break full time and part time up so I can make sure I have every position scheduled, which does not appear to be the best way to do this. Is there a way to have the COUNTIF formula correlate with the results from the SUMPRODUCT formula? I want to be able to easily identify how many of each position we have during lunch rush and dinner rush. No need to know all of the other time frames that were utilized for the SUMPRODUCT formula because if we have the positions covered for lunch and dinner rush, it will cover all of the other time frames due to the way the shifts are scheduled. If you think is a better way to do this please share. Thanks and I need to wrap this schedule up ASAP as we are opening in two weeks!
    Attached Files Attached Files
    Last edited by colton14; 07-24-2016 at 12:48 PM.

  19. #19
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    Bump. Anyone??

  20. #20
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 2019
    Posts
    17,570

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    Try pasting the following formula in D53 and dragging down to D57:
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    You'll then need to modify it for the Dinner Rush E53 dragged to E57 as follows:
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    The formulas apply to Monday's Lunch and Dinner Rushes for full time employees, they will need to be modified for the other days and for part time employees.
    Let me know if you have any questions.
    Consider taking the time to add to the reputation of everybody that has taken the time to respond to your query.

  21. #21
    Registered User
    Join Date
    07-18-2016
    Location
    Bismarck, ND
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Re: If Function and Time Number Format. Creating Work Schedule w/ Manpower and NEED HELP A

    How does this look?
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Creating an employee work schedule that will calculate time worked
    By Tlyke212 in forum Excel - New Users/Basics
    Replies: 4
    Last Post: 12-28-2015, 12:56 AM
  2. Need help creating a break schedule for work
    By aabdulh2 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 05-17-2014, 03:31 PM
  3. Creating a Work Schedule on 24 HR format...Need Help Please
    By FrierEM in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 03-19-2014, 09:49 PM
  4. Creating work schedule in Excel
    By Shanthan in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 04-27-2013, 05:01 PM
  5. Extract text strings separated by commas and spaces
    By VB15 in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 06-21-2012, 04:49 PM
  6. [SOLVED] Manpower Schedule
    By [email protected] in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-20-2006, 06:35 PM
  7. [SOLVED] Creating a work schedule
    By Brandy in forum Excel General
    Replies: 1
    Last Post: 07-09-2005, 10:57 PM

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