+ Reply to Thread
Results 1 to 10 of 10

Help with daily schedule with auto days off.

  1. #1
    Registered User
    Join Date
    05-11-2023
    Location
    Palm Beach
    MS-Off Ver
    365
    Posts
    3

    Help with daily schedule with auto days off.

    Im trying to build a daily work schedule sheet.* One side will be the people at work, the other will be the people on a regular day off

    Each line has a list box connected to an employee list,* *Doe, John* *(MT).

    some will work with a trainee some will not.* The trainee are on a separate column.* *Column B is John doe* *(MT)* *and Column C is Trainee, jon* (TW).



    I need to put a date on the daily schedule page, and that will determine if John gets moved to the other side of the sheet on a regular day off.* *I need this automatically and hopefully sorted by alpha for everyone off on that day.

    Each sheet will be a new date.

    Sunday May 14, 2023

    WORK______________________________________________________________OFF

    Truck 74* *Doe, John* *(MT)* Trainee, jon (TW) ________________________Smith, John* (SS)

    TRuck 75* _______________________________________________________williams, bill* (SM)



    Next day

    Monday May 15,2023
    WORK ___________________________________________ OFF

    truck 74_________________Trainee, john (TW)_____________ Doe, John (MT)
    truck 74 Smith, john (SS) _____________________________Williams, bill (SM)

  2. #2
    Registered User
    Join Date
    05-11-2023
    Location
    Palm Beach
    MS-Off Ver
    365
    Posts
    3

    Re: Help with daily schedule with auto days off.

    just for clarification. There will be personal days off and other things on the sheet. IT will calculate the number of people there on that date and tell how many more can take off. Showing minimum staffing and such, but the above is the problem I cant figure out.
    Basically a work schedule for the next day. It will tell them what truck they will be on so they know what route they will work and what time to report based on that route. I will make 7 separate sheets, one for each day of the week so they can plan ahead and see if there is room to take off that week.

    ive got everything but the auto move of the regular days off. Trying to make it idiot proof for whoever makes the schedules.

  3. #3
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,981

    Re: Help with daily schedule with auto days off.

    Welcome to the forum.

    There are instructions at the top of the page explaining how to attach your sample workbook (yellow banner: HOW TO ATTACH YOUR SAMPLE WORKBOOK). Screenshots are of little practical use as we cannot manipulate them.

    A good sample workbook has just 10-20 rows of representative data that has been desensitised. It also has expected results mocked up, worked examples where required, relevant cells highlighted and a few explanatory notes.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  4. #4
    Registered User
    Join Date
    01-10-2023
    Location
    America
    MS-Off Ver
    365
    Posts
    2

    Re: Help with daily schedule with auto days off.

    Here is an example of what im looking for.... tfox6464
    Attached Files Attached Files

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

    Re: Help with daily schedule with auto days off.

    Perhaps this will do what you want:
    On the Master sheet the schedules are displayed in columns C:I with "x" denoting the days off.
    Cells C3:I3 are populated using: =IF(TEXT(TODAY(),"dddd")=C4,TODAY(),TODAY()+(7-WEEKDAY(TODAY(),2)+1)) such that the date shown will be the next date for the day displayed in C4:I4
    On each of the daily sheets the primary and trainee columns are populated using:
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    The off column is populated using:
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    Note that the date in cell E1 is manually entered.
    Let us know if you have any questions.
    Attached Files Attached Files
    Consider taking the time to add to the reputation of everybody that has taken the time to respond to your query.

  6. #6
    Forum Expert
    Join Date
    02-10-2019
    Location
    Georgia, USA
    MS-Off Ver
    Office 365
    Posts
    2,832

    Re: Help with daily schedule with auto days off.

    Since you're on 365, you have other options. I was unclear on exactly what you want, so I'm just going off of JeteMc is displaying.
    On the Master, in C3, try:
    =TODAY()+7-WEEKDAY(TODAY(),12)
    (You could replace "TODAY()", with some date you wanted to reference.
    For cells D3:I3, I just used:
    =C3+1
    For each day sheet, in cell B2, try:
    =FILTER(Master!$A$5:$A$11,(INDEX(Master!$C$5:$I$11,,MATCH($E$1,Master!$C$3:$I$3,0))<>"x")*(Master!$J$5:$J$11=B1),"")
    copy that to C2.
    For Off days, try:
    =FILTER(Master!$A$5:$A$11,(INDEX(Master!$C$5:$I$11,,MATCH($E$1,Master!$C$3:$I$3,0))="x"),"")
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    05-11-2023
    Location
    Palm Beach
    MS-Off Ver
    365
    Posts
    3

    Re: Help with daily schedule with auto days off.

    that works very well, thank you.... just gotta try to make it idiot proof on the entry of new employees...

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

    Re: Help with daily schedule with auto days off.

    Thank you for the feedback. Please take a moment to mark the thread as 'Solved' using the thread tools menu above your first post. I hope that you have a blessed day.

  9. #9
    Registered User
    Join Date
    01-10-2023
    Location
    America
    MS-Off Ver
    365
    Posts
    2

    Re: Help with daily schedule with auto days off.

    Just tried that... and it said FILTER was invalid. Im trying to get plug that formula in to the orginal sheet by hand, adjusting for the real rows,
    thanks for your help.. the master page works perfect

  10. #10
    Forum Expert
    Join Date
    02-10-2019
    Location
    Georgia, USA
    MS-Off Ver
    Office 365
    Posts
    2,832

    Re: Help with daily schedule with auto days off.

    Who are you addressing this to? When you say, "Just tried that", just tried what? If you're saying the "FILTER" formula I mentioned in Post#6 was invalid, FILTER is valid on 365. If you're trying it on a machine that doesn't have 365, then it won't work.

+ 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. Collecting Data from a weekly schedule and displaying it on a daily schedule
    By russfromtx in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-03-2022, 11:02 PM
  2. Auto Create Daily Break Schedule from Weekly Work schedule
    By colema62 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-27-2021, 04:31 PM
  3. [SOLVED] How to calculate task schedule based on 4-days work and 4-days OFF including weekends
    By qadeerume in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 07-28-2020, 12:19 AM
  4. [SOLVED] Weekly schedule data to daily schedule
    By Sarah_L in forum Excel General
    Replies: 6
    Last Post: 09-16-2019, 04:36 AM
  5. Schedule - auto text insert if 28 days has passed
    By clm11115 in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 01-17-2018, 05:45 PM
  6. Automate Monthly schedule to Daily Schedule
    By Frytoos in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-03-2014, 09:09 AM
  7. create daily schedule using master task schedule
    By DCO in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 11-13-2012, 01:08 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