Hello everyone!
I am new to Power Automate...
I am trying to create a flow when a sharepoint file is updated in that particular day, the flow is triggered and will send a customized email to users notifying them that the file has been changed today..
So far the flows have run successfully, however, it takes about an hour after the stipulated time to send the email out...
Also, if the file has not been changed, the flow will continue running and finish once the file has been changed, e.g. if I made changes only on Wednesday, the flow that was ran on Monday, Tuesday and Wednesday will all send an email to users. Users will receive 3 emails instead of 1..
I have attached my flow as below, I would also like to do the same but on a weekly basis.
Any help is greatly appreciated!!
Solved! Go to Solution.
hey @Anonymous @v-bacao-msft
Whilst you can filter the results post returning the files from SharePoint... IMHO you should really query for a smaller result and then process the results.
For example this would pickup all files updated since the start of the current day:
The filter query expression is: startOfDay(utcNow(),'yyyy-MM-ddTHH:mm:ssZ')
Next step: Add a 'Send email Notification' action
Next step: Configure the action, upon selecting dynamic data from the 'Get Files' action the 'Apply to Each' loop will be automatically added by Power Automate
All Done 🙂 - though obviously you'd want a different trigger action
I just changed two files in a library with 3000 files contained and both we're picked up:
HTH
Jay
-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up
Hey @Anonymous
Welcome to the community 🙂
Can you add some screen shots of the configuration of your Flow please, some screen shots of the run history showing the result of an executed Flow would also be helpful
Thanks J
you didnt attach anything.
make a column of time number lets call it SendEmail - default value 1
Create a flow with trigger when created or modified - add a action update file properties and set SendEmail = 1.
Run a scheduled flow daily that does a Get Files (properties only) where SendEmail eq 1.
For each item send your email, and also update SendEmail to 0 or some other number other than 1
@Jay-Encodian @Gristy Here are the screenshots, not sure why it did not attach previously..
Thank you in advance for all your help..
Hey @Anonymous
Can I check your requirements please as there a few ways to do this...
Are you trying to simply send a customised email to a user when a file has changed in SharePoint? i.e. what happens if the same file is changed twice on the same day?
Are you trying to send a summary email once a day for a file which has been changed?
Thanks Jay
Hi @Jay-Encodian
Sorry I did not specify this..
I am trying to send a summary email once a day for a file that has been changed.
For example, if the file was changed once in the morning and once in the afternoon, at the end of the day I would like the flow to only send one email to users informing them that the file has been changed today.
Thank you for your help 🙂
Hi @Anonymous ,
Perhaps you might consider checking whether the specified file has been changed the previous day. If changed, send a message.
I hope that helps.
Best Regards,
Hi @v-bacao-msft,
That's a great suggestion!
I tried the following, however, I am not sure on some things on the flow, please let me clarify.
For recurrence, I do not need to put a time zone. Does that mean that regardless of timezone it will run at 8am?
e.g. if I am in Singapore, it will run at 8am, while my user is in Portugal, it will run at their 8am?
Next part is the get files (properties only) and I need to select the library name which only appears Documents.
However, In documents I have a few folders which I do not want to check if it is edited.
For example, in my sharepoint there are a few folders, and in this particular folder (Material Status Listing)
I have a few files (for now there is only one, but in the future as each season pass, there will be more files added), and I only want to look if that particular file has been changed, how do I include that in Library Name?
Next, I tried to replicate the flow after apply to each, however I am unable to find the following conditions that you have in your screenshot, could it be there is something wrong in my step?
Thank you so much for your time in solving this 🙂
hey @Anonymous @v-bacao-msft
Whilst you can filter the results post returning the files from SharePoint... IMHO you should really query for a smaller result and then process the results.
For example this would pickup all files updated since the start of the current day:
The filter query expression is: startOfDay(utcNow(),'yyyy-MM-ddTHH:mm:ssZ')
Next step: Add a 'Send email Notification' action
Next step: Configure the action, upon selecting dynamic data from the 'Get Files' action the 'Apply to Each' loop will be automatically added by Power Automate
All Done 🙂 - though obviously you'd want a different trigger action
I just changed two files in a library with 3000 files contained and both we're picked up:
HTH
Jay
-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up
Hi @Jay-Encodian
Thank you for the suggestion on adding the filter query expression to pick up files that are in the Sharepoint.
What if I only want to check one particular file in library?
For Example in my Sharepoint Library I have 5 folders but I would only want to check if files are changed in Material Status Listing.
How do I go about filtering the flow to run only this folder (Material Status Listing)?
Thank you so much for your help on this!!
Hi @Anonymous
If you were only checking a single file you would use the 'Get File Properties' action or similar to get a single file as opposed to using 'Get Files' which returns a collection.
If you want to get the files from a particular folder add a 'Filter Array' action as follows:
HTH
Jay
Hi @Jay-Encodian
Thank you for helping me, but I have ran into an error after including the filter Query.
Could it be a problem in my steps?
I will list down my steps as below, could you help me to take a look and pinpoint out any errors on my part that I should correct it before running the flow.
1. Recurrence: I included this as per suggested by @v-bacao-msft
However, I am not sure if I do not put a time zone, does that mean that regardless of timezone it will run at 8am?
e.g. if I am in Singapore, it will run at 8am (SG Time) while my user is in Portugal, it will run at 8am (PTG time)?
2. Get Files (properties only) - I have added Filter Query as per your reply
3. I have added a filter array to filter out the folder that I would like to check
4. apply to each value and send an email notification (v3)
Before I added the filter query in stage 2 and make a condition instead in stage 4 as mentioned by @v-bacao-msft the flow was able to run. However when I changed the file, the flow still ran through no instead of yes condition, so email notification was never sent.
When I add the filter query in stage 2 and remove condition in stage 4, the flow is stuck at stage 2 with the error as above.
Please let me know if which part should I change or add in instead.
Thank you for your help once again!
Hey @Anonymous
Can you copy and paste your filter query into this thread please?
It should be similar to: Modified gt '@{ startOfDay(utcNow(),'yyyy-MM-ddTHH:mm:ssZ')}'
Also to add you should remove the red surrounded elements of your folder path in the filter array action:
Thanks J
Hi @Anonymous ,
First, you have less of the last " ' "configured in Filter Query.
In addition, when you configure Apply to each, you should use the Body output by the Filter array. If you also use the content output by Get items, then configuring the Filter array is meaningless.
Going back to the method I provided earlier, if you only want to check the specified folder, you can directly add an additional filter in Condition to see if the Folder Path is the one that is expected.
Hope that makes sense.
Best Regards,
Hi @Jay-Encodian
I have managed to run the file and the flow works!
However, I have another problem... as the file is in sharepoint the autosave is always on.
This means that if users just open the file and not do any changes to the file, it will also be showed as changes.
Any way to work around this?
Happy New Year!!
Hey @Anonymous
Good news 🙂 - if you could please mark the post which helped you solve the issue as a solution that’d be great (helps others find solutions to similar problems)
ref autosave; assuming that disabling the Office client isn’t an option, have you tried configuring the SharePoint library to require checkout? https://support.office.com/en-gb/article/set-up-a-library-to-require-check-out-of-files-0c73792b-f727-4e19-a1f9-3173899e695b
HTH
Jay
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 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 SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24 17 @Anil_g 7 @ManishSolanki 13 @eetuRobo 5 @David_MA 10 @VishnuReddy1997 5 @SpongYe 9JhonatanOB19932 (tie) @Nived_Nambiar 8 @maltie 2 (tie) @PA-Noob 2 (tie) @LukeMcG 2 (tie) @tgut03 2 (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. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate @Deenuji 12@ManishSolanki 19 @Anil_g 10 @NathanAlvares24 17 @VishnuReddy1997 6 @Expiscornovus 10 @Tjan 5 @Nived_Nambiar 10 @eetuRobo 3 @SudeepGhatakNZ 8 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 Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22 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 Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2 Anil_g2 SharonS2
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