cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Sidhant_02
Post Prodigy
Post Prodigy

Adding Holidays and Notifying users

Hi everyone,
So few months back I had designed a flow (Power Automate flow) that collects all users from a Microsoft Teams group (with headers in the excel sheet: Name, Email, Dates of the week) this file is created at the start of the week (i.e. Monday at 9:30 am IST) and a message is shared on the Teams channel that the file is being created for the week please enter your work mode for the current week (WFO - Work From Office and WFH - Work From Home).
But there were some issues like if a holiday comes in (like on Monday like for New year 1st Jan) in this case no user will login and fill in the timesheet (as it's a Holiday 😉) so in such cases I wanted the flow to fill it as 'Holiday'.
So my flow looks like this:

Sidhant_02_0-1704699589554.png

This flow creates an Excel which looks like this:

Sidhant_02_1-1704701149623.png


So I created a HolidayList excel which has all the list of holidays as per my region

Sidhant_02_2-1704701255544.png


So now I was thinking how to refer this (holiday list sheet) and if there is any date that is present and matches with one of the dates in the week (like 26th Jan is a Republic Day which is on Friday) so for that week on Friday the flow should add the value to all rows for that day (for all users) as 'Holiday'/ 'Holiday_name (Republic Day) Holiday'.


And the next thing that I was thinking of sending a reminder (at-least for two days like Tuesday,Wednesday: For users who have not filled the time sheet 'Please fill your work mode time sheet for the week' and next week (the previous week timesheet should not be editable for users)

So if anyone has any idea about this please let me know it would help and if any more information is needed do let me know.

Regards,
Sidhant.

51 REPLIES 51
ConnorDeasey
Regular Visitor

Hi Sidhant, not sure if its what your looking for but could be worth taking the Vacation Booking App course on the Collab365 Academy - Plenty of little nuggets to help you here that you might find useful. https://academy.collab365.com/offer/c365-chg-vacation-app/powerplatform-vacation-challenge-ss/

Hi @Sidhant_02 ,

 

The order of the two Apply to Each controls needs to be reversed. 

vjefferni_0-1704879239458.png

 

Best regards,

Community Support Team _ Jeffer Ni

If this post helps, then please consider Accept it as the solution to help the other members find it.

Hi @ConnorDeasey ,
Thanks for sharing the link, I did check this the only issue was this course was paid if there are free resources do let me know.

Regards,
Sidhant.

Hi @v-jefferni  & @ConnorDeasey ,
Tested the new flow (that I shared with you earlier) the file that was created in the OneDrive had triple amount of rows the group has only 56 individuals (in the Teams Group) but in the file it had 258 rows

Sidhant_02_0-1704880199012.png

Sidhant_02_3-1704880916321.png

and 12/01/2024 to 14/01/2024 were all merged in column 

Sidhant_02_4-1704880976843.png

 


And the other thing was the name, email and date fields were empty and the other thing was the 'Delay' that I had added a delay of 5 min just to have everything in sync but this delay was extended way beyond the specified time limit.

Sidhant_02_1-1704880683458.png

Sidhant_02_2-1704880725927.png

 


Anything that I have missed or done incorrectly

Regards,
Sidhant. 

Hi @v-jefferni ,
Did interchange the two loops as you suggested and now I am getting the names but for every 4 rows the value is repeated 

Sidhant_02_0-1704884344204.png

And the other thing after the first two dates (10/1/24 and 11/1/24 the remaining three dates are occupied in the same row). And every time I tried testing it it gave the TimeOut message on the flow (which I had shared earlier in my reply)

Regards,
Sidhant.

BCBuizer
Multi Super User
Multi Super User

Hi @Sidhant_02 ,

 

The issue with the duplication seems to be caused by a row being added for each column.

 

A way to resolve this is to move the contents of the nested loop inside the parent loop and then get rid of the nested loop. Then change the contents of the Compose action to something like the below where you need to replace anything in <> to a dynamic reference or expression:

 

{
   "SNo": '<varCounter>',
   "Employee Name": '<List of member...>',
   "Employee Email": '<List of member...>',
   "<split(...)[0]>": '<if statement to check if it's a holiday>',
   "<split(...)[1]>": '<if statement to check if it's a holiday>',
   "<split(...)[2]>": '<if statement to check if it's a holiday>',
   "<split(...)[3]>": '<if statement to check if it's a holiday>',
   "<split(...)[4]>": '<if statement to check if it's a holiday>'
}

 

The idea is that you capture the values for all headers per employee in one go, instead of per header.

 

The issue for having the merged rows may be a missing separator between the dates. Please check if the header string does contains the right separators.



Did you like my post? Please give it a thumbs up! Did I resolve your issue? Please click Accept as Solution to close the topic and so other members of the community can find solutions more easily.

Hi @BCBuizer ,
Thanks for the reply you mentioned <> to replace with the dynamic reference or expression 

"<split(...)[0]>": '<if statement to check if it's a holiday>'

Are you referring to something like this

Sidhant_02_0-1708359987412.png

 



In the split (...) what is the expression and the if statement : What's the expression (is it the same that I have used earlier?)


Regards,
Sidhant.

BCBuizer
Multi Super User
Multi Super User

Hi @Sidhant_02 ,

 

For the split use this: 

BCBuizer_0-1708360047003.png

 

by adding the square brackets and numbers, you can select the items in the array that is returned by the split function. The five items you should select are the ones that have the date as a value.

 

The if statement uses the same expression as above to check is your Holidays table contains that date to determine if it is a holiday. Again in pseudo expression:

 

If(
	contains(
		<dynamic reference to 'List row presen in a table', date column>,
		<Split(...)[0]>
	),
	'Holiday',
	''
)

 

 



Did you like my post? Please give it a thumbs up! Did I resolve your issue? Please click Accept as Solution to close the topic and so other members of the community can find solutions more easily.

Hi @BCBuizer , 
Sorry could not reply early (was busy with some other task), so are you referring something like this:

Sidhant_02_0-1712824032873.png

 

I removed the nested loop and in for loop now just have 3 actions and the expression for the last 4 columns (key-value pair) is:

 

"split(outputs('Headers',','))[0]" : "if(contains(outputs('List_rows_present_in_a_table')?['body/value'],split(outputs('Headers'))[0]),'Holiday','')"

 

Is it correct ?.
As you had mentioned 

<dynamic reference to 'List row presen in a table', date column>

So to refer the date column do I need to add an additional expression like:
if(contains(outputs('List_rows_present_in_a_table')?['body/value/Date'],split(outputs('Headers'))[0]),'Holiday','')

OR:

outputs('List_rows_present_in_a_table')?['body/value]?['Date']


Another doubt I had was you did say by adding square brackets and numbers we can select the items in the array returned by the split function so my headers is something like this:

Sidhant_02_1-1712824312194.png

So in the split function should I start from index [3] as from there the dates start?.

If there are any additions please let me know @BCBuizer , @v-jefferni , @ConnorDeasey .

Regards,
Sidhant.

BCBuizer
Multi Super User
Multi Super User

Hi @Sidhant_02 ,

 

For your 3 points:

 

1. That seems almost correct: For the values (right side of the colons) replace all double quotes, with single quotes. Also I remember you need 5 key-value pairs for each working day of the week.

 

2. A quick way I found to make the if function work is by adding a Select action before the apply to each loop. Set the From field to @{outputs('List_rows_present_in_a_table')} and the Map field (in text mode) to @{item()

['Date']}. The output of this can then be converted into a string which will work with the contains operator.

 

In all this will make the input of your compose action look something like the below:

{
   "SNo": '<varCounter>',
   "Employee Name": '<List of member...>',
   "Employee Email": '<List of member...>',
   "@{split(outputes('Header'),',')[0]}": '@{if(contains(join(body('Select'),', '),split(outputs('Headers'))[0]),'Holiday','')}',
   "@{split(outputes('Header'),',')[1]}": '@{if(contains(join(body('Select'),', '),split(outputs('Headers'))[1]),'Holiday','')}',
   "@{split(outputes('Header'),',')[2]}": '@{if(contains(join(body('Select'),', '),split(outputs('Headers'))[2]),'Holiday','')}',
   "@{split(outputes('Header'),',')[3]}": '@{if(contains(join(body('Select'),', '),split(outputs('Headers'))[3]),'Holiday','')}',
   "@{split(outputes('Header'),',')[4]}": '@{if(contains(join(body('Select'),', '),split(outputs('Headers'))[4]),'Holiday','')}',
}

(The @{}s should make it possible to copy the above directly in the editor without having to indicate those are expressions).

 

3. It is an interesting technique, but I don't see how this adds value to your scenario. My recommendation is to stick with the above and push to make that work correctly.



Did you like my post? Please give it a thumbs up! Did I resolve your issue? Please click Accept as Solution to close the topic and so other members of the community can find solutions more easily.

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

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!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

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

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

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.    

Updates to Transitions in the Power Platform Communities

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

Users online (1,470)