Hi folks,
I have a really tough challenge here for someone!
I have little experience with creating math-based formulas in PowerApps. My objective calls for some math functions and I'm hoping someone here may be able to provide me some code.
I am trying to achieve a way for managers and team leaders to input their employees' schedules for a full year (365 days). I resolved how to achieve this when the schedule is fixed at 37.5 hours per week (Mon-Fri, 7.5 hrs/day, 5 days/week)
What I need next is to develop a way for them to input a custom schedule, which repeats either every 7 days, 14 days, 21 days or 28 days.
Each of the cycles (7, 14, 21 or 28), must repeat over and over to fill 365 days.
For example:
Employee A may have a schedule in a 7-day cycle like this:
Mon | Apr 4 | 8 hours |
Tue | Apr 5 | 8 hours |
Wed | Apr 6 | 8 hours |
Thu | Apr 7 | 8 hours |
Fri | Apr 8 | 5.5 hours |
Sat | Apr 9 | 0 hours |
Sun | Apr 10 | 0 hours |
Total = 37.5 hrs/wk or 150 hrs/mth |
Employee B may have a schedule in a 14-day cycle like this:
Mon | Apr 4 | 8.5 hours |
Tue | Apr 5 | 8.5 hours |
Wed | Apr 6 | 8.5 hours |
Thu | Apr 7 | 8 hours |
Fri | Apr 8 | 8 hours |
Sat | Apr 9 | 0 hours |
Sun | Apr 10 | 0 hours |
Mon | Apr 11 | 0 hours |
Tue | Apr 12 | 8.5 hours |
Wed | Apr 13 | 8.5 hours |
Thu | Apr 14 | 8.5 hours |
Fri | Apr 15 | 8 hours |
Sat | Apr 16 | 0 hours |
Sun | Apr 17 | 0 hours |
Total = 75 hrs/biweekly or 150 hrs/mth |
What I need is a text box where the manager or team leader can input the number of days in the schedule (7, 14, 21, or 28)
Plus, another text box where they can input the starting date of the schedule
If the selection is a 7-day schedule, they need to then get 7 rows of data to input. If the selection is 14 days, they need to get 14 rows of data to input, etc. (always starting on a Monday).
Once they have entered the schedule in the appropriate number of days (cycle), then that cycle needs to automatically repeat for the remainder of the fiscal year (ends Mar 31).
I would like to use a gallery to achieve this – possibly by some type of sequence as in my regular Mon-Fri solution:
The Items property of my gallery is: ForAll(Sequence(365, 0), DateAdd(Date(2022,04,01), ThisRecord.Value, Days))
It has no individual controls to set cycles or hours of work.
To build a custom schedule, the user needs these controls and the gallery needs to reflect the cycle of hours against the appropriate dates.
I guess the first solution that is required is to find a code that will take this array and repeat it over and over from the start date selected to March 31st.
Example: 8, 8, 8, 8, 5.5, 0 ,0, (then repeat over and over as: 8, 8, 8, 8, 5.5, 0, 0)
Hoping someone knows how to write a code that will take a series of numbers and repeat them over and over.
Fingers crossed that someone can help!
Thanks a bunch!
Solved! Go to Solution.
Can't wait to recreate this! I'm on it and will report back in a bit! Thanks a million!
No problem. Let me know how it goes.
I can't believe how quickly I was able to build that! This is remarkable. The only thing I forgot to tell you about the need to include statutory holidays and ensure those present "0" hours of work by default.
I added all of the holidays for 2022-2023 in a SP list, and wonder now with the fact that your solution can display info by fiscal year, if I should add a column called "Year" there as well and add the holidays for the next 3 years or so.
Is there a way to include the holidays somehow in one of your codes?
Ok, so after fully absorbing how this solution could function, I identified some concerns.
I think its great how you created a dropdown for the user to select a pre-defined pattern of 5 days (which represents the standard Mon-Fri schedule perfectly), then a 7, a 14. The concern is that I provided only examples of some custom 7-day or 14-day patterns. In reality, the daily hours of work could be anything. Not just 8 or 8.5 or 5.5. It's whatever the employee requests, as long as it adds up to 75 hours every two weeks. (Combinations are kind of endless).
I would love a way for the team leader to first choose between two options; 1) "Standard Schedule", or 2)"Custom Schedule". If they pick Standard Schedule, then the pattern you created for the 5 days would be used. If they pick Custom Schedule, then they need the ability to pick the cycle for the custom schedule (7, 14, 21, or 28), and then be able to identify the hours each day to create the pattern.
Is that possible? If so, the app would be perfect!
Yes...always keep it super simple and PowerApps will be your friend!!
Sure thing on the holidays.
I would suggest that instead of an individual list for each fiscal year, that you instead just have a single Statutory Holidays list. Add a Fiscal Year numeric column to the list to indicate the year for it.
Then change the Formula on the ddYear Items property to:
ForAll(Sequence(3, Year(Today())), {Value: Value, Holidays: Filter('Statutory Holidays', FiscalYear=Value)})
Change the Text property of lblDayType to:
Coalesce(
ThisItem._Holiday,
If(IfError(Value(txtHours.Text), 0) =0, "Day of Rest", "Work Day")
)
(optional) Change the FontWeight property of lblDayType to:
If(!IsBlank(ThisItem._Holiday), Bold, FontWeight.Normal)
Change the Default property of the txtHours control to:
Coalesce(
ThisItem._Item.Hours,
If(!IsBlank(ThisItem._Holiday), 0),
With({_pattern: ddPattern.Selected.Pattern},
Coalesce(LookUp(_pattern, Weekday(ThisItem.Date, StartOfWeek.MondayZero) + 1 in Day, Hours), 0)
)
)
And...done!!
Ooops...forgot one!! (kind of important!)
Change the Items property of the gallery to:
With({_fiscalYear: Value(ddYear.Selected.Value), _fiscalStartMonth: 4},
With({_items: Filter(Schedules, Year=_fiscalYear, Title=ddPerson.Selected.Value)},
ForAll(Sequence(DateDiff(Date(_fiscalYear, 1, 1), Date(_fiscalYear+1, 1, 1)), 0),
With({_date: DateAdd(Date(_fiscalYear, _fiscalStartMonth, 1), Value)},
{Date: _date,
_Item: LookUp(_items, Date=_date),
_Holiday: LookUp(ddYear.Selected.Holidays, Date=_date, Title)
}
)
)
)
)
So...I got a notification you replied and in that was the reply you made, but it is not showing up in this thread. I will answer what you wrote that I read in that notice.
Well, the app was based on the premise that there was an actual pattern. What you are looking for now is to break away from the pattern and have a custom pattern for the schedule. The challenge with that is that the pattern was based on one week of time (7 days). If you go to a custom pattern, then the question would be, is the user then customizing a week of time even for say a 14 day cycle? In other words, if they were to choose a 14 day pattern, would then be altering the hours for each day in the 14 days (week 1 and week 2) or just the pattern of 7 days (week 1), which would then be applied to the following 7 days (week 2).
I am guessing it is the former that you want - customize all 14 days (or 21 or whatever is chosen).
It's not impossible, but it changes the basis that the solution I provided works. Because, as you will see in the Pattern table of each choice, it is only specifying days 1 to 7 (as that was the original pattern you showed).
Please clarify.
Hi again,
Yes, I sent a reply at the exact same time that you sent a reply so likely it got missed. Sorry for the pain I may be causing you here! I did indicate this requirement in my original post, but it's possible it wasn't clear.
"What I need next is to develop a way for them to input a custom schedule, which repeats either every 7 days, 14 days, 21 days or 28 days.
If the selection is a 7-day schedule, they need to then get 7 rows of data to input. If the selection is 14 days, they need to get 14 rows of data to input, etc. (always starting on a Monday)."
The rule in our organization is that employees may have custom schedules of any sort as long as it doesn't interfere with operational requirements and that the hours add up according to 37.5/week (7-day cycle), 75 hrs/biweekly (14-day cycle), 112.5 every 3 weeks (21-day cycle), or 150 hours every month (28-day cycle). This is what is making this scheduling app so hard to create. 😞
For a 14-day cycle, the hours for each of the 10 business days must add up to 75. So it could be different amounts of hours each day for each of those 10 days... and so on for each of the other cycles I described.
I feel so bad for not explaining this more clearly earlier. And I apologize for the work/solution you may have designed that now needs redesigning. Wish I could send you a thank-you gift after this!
Of course I missed the reply - now I see it! And of course I missed the original customize point in the original post! I'm batting a thousand today 🙄 Having to bounce between so many things today has been a challenge (what's new?)
It's not really a problem to get what you are explaining now. I just need to rethink your process a little bit as there are some patterns to your needs. One little challenge I see is that although you are mentioning Monday as the start of the week, that does not necessarily correspond to the start of the fiscal year, so any starting days leading up to the first Monday need some special attention.
Let me review it again and see what I can come up with for you. I've got to wrap up on another project at the moment, but will get you what you need. And gifts are always welcome 😂
Good morning Randy, I wanted to let you know some new information I just learned. Schedules can begin on any given day of the week (not just Mondays as I previously understood). So the fact that a Monday may not correspond with the start date of a fiscal year is not a concern. Thank you mentioning that in your post above. It triggered me to dig deeper. Hoping this new fact makes the coding more simple! Thank you 🙂
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08 23 @WarrenBelz 31 @DBO_DV 10 @Amik 19 AmínAA 6 @mmbr1606 12 @rzuber 4 @happyume 7 @Giraldoj 3@ANB 6 (tie) @SpongYe 6 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08 10@WarrenBelz 25 @DBO_DV 6@mmbr1606 14 @AmínAA 4 @Amik 12 @royg 3 @ANB 10 @AllanDeCastro 2 @SunilPashikanti 5 @Michaelfp 2 @FLMike 5 @eduardo_izzo 2 Meekou 2 @rzuber 2 @Velegandla 2 @PowerPlatform-P 2 @Micaiah 2 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8 SunilPashikanti8
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages