cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
mhambalek
Advocate I
Advocate I

Create Daily Summary of Files Uploaded to a Library

I've been able to create a flow that emails users when files are uploaded to a library.  However, I would like to send one email at the end of the day listing all files that have been uploaded.  I need help with that.  I found a template that is similar for list items (Email today's filtered items from SharePoint at determined intervals) and tried to modify that one to look at file properties insted of list properties.  But I couldn't get it to work.

 

Has anyone attempted this and can share a screenshot of their flow?  Many thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
v-xida-msft
Community Support
Community Support

Hi @mhambalek,

 

Do you want to send you an email with a daily summary of Files uploaded to a library?

Could you please share a screenshot of your flow's configuration?

 

I have made a test on my side and please take a try with the following workaround:

  • Add a Recurrence trigger, Interval set to 1 and Frequency set to Day. At these hours set to 18.
  • Add a "Get files (properties only)" action, specify Site Address and List Name.
  • Add a "Filter array" action, From set to output of "Get files (properties only)" action. Click "Edit in advanced mode", type the following formula:
@equals(formatDateTime(item()?['Created'], 'MM/dd/yyyy'), utcNow('MM/dd/yyyy'))
  • Add a "Select" action, From set to output of "Filter array" action. Within Map entry, type following entries:3.JPG

    The corresponding value of first entry set to following formula:

item()?['{Name}']

The corresponding value of second entry set to following formula:

item()?['Created']

The corresponding value of third entry set to following formula:

item()?['Author']?['DisplayName']

The corresponding value of forth entry set to following formula:

item()?['{Link}']
  • Add a "Create HTML table" action, From set to output of "Select" action.
  • Add a "Send an email" action, Body field set to output of "Create HTML table" action. Is HTML field set to Yes.

Image reference:4.JPG

 

5.JPG

The flow works successfully as below:6.JPG

 

7.JPG

 

 

 

Best regards,

Kris

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

14 REPLIES 14
v-xida-msft
Community Support
Community Support

Hi @mhambalek,

 

Do you want to send you an email with a daily summary of Files uploaded to a library?

Could you please share a screenshot of your flow's configuration?

 

I have made a test on my side and please take a try with the following workaround:

  • Add a Recurrence trigger, Interval set to 1 and Frequency set to Day. At these hours set to 18.
  • Add a "Get files (properties only)" action, specify Site Address and List Name.
  • Add a "Filter array" action, From set to output of "Get files (properties only)" action. Click "Edit in advanced mode", type the following formula:
@equals(formatDateTime(item()?['Created'], 'MM/dd/yyyy'), utcNow('MM/dd/yyyy'))
  • Add a "Select" action, From set to output of "Filter array" action. Within Map entry, type following entries:3.JPG

    The corresponding value of first entry set to following formula:

item()?['{Name}']

The corresponding value of second entry set to following formula:

item()?['Created']

The corresponding value of third entry set to following formula:

item()?['Author']?['DisplayName']

The corresponding value of forth entry set to following formula:

item()?['{Link}']
  • Add a "Create HTML table" action, From set to output of "Select" action.
  • Add a "Send an email" action, Body field set to output of "Create HTML table" action. Is HTML field set to Yes.

Image reference:4.JPG

 

5.JPG

The flow works successfully as below:6.JPG

 

7.JPG

 

 

 

Best regards,

Kris

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Kris,

 

This is exactly what I'm looking for.  I followed your instructions and it works perfectly.  I tried adding a condition prior to the Filter Array to check if the array was empty so that it doesn't send a blank email when there are no files for a particular day.  I used @empty(body('Get_files_(properties_only)')?['value']) but it didn't work.  Any ideas?

Hi @mhambalek,

 

Could you please share a screenshot of your flow's configuration?

 

If you create your flow based on the solution that I provided, you could consider take a try to add a Condition under the "Filter array" action to check if the filtered array is empty.

 

Please take a try with the following workaround:1.JPG

Within Condition box, click "Edit in advanced mode", type the following formula:

@empty(body('Filter_array'))

 

Best regards,

Kris

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-xida-msft,

 

This works perfectly.  I had the condition before the Filter Array instead of after.  Thanks!

Anonymous
Not applicable

Hi @mhambalek and @v-xida-msft

 

Thank you for the informative thread. I have gotten this going thanks to both of your instructions.

However, I am getting multiples of the same e-mail as opposed to one summary.

 

4.PNG

 

Please see my workflow as below:

Thank you!

 

1.PNG

2.PNG

 

 

 

Full Process:

3.PNG

Anonymous
Not applicable

No worries, just answered my own question! The issue lays in the "Apply To Each" function.

I did it as a simple "Create HTML Table" and it worked 🙂

WhiteSwan
New Member

Thank you so much for this post! 

 

This has helped me significantly. mhambalek you are a genius.

 

Andy

ghultstrand
Regular Visitor

Not to bring up an old thread, but this was almost perfect for me except I was trying to do this with OneDrive for Business. My problem is I cannot find the Get Properties with filter option for OneDrive. 

 

Any ideas?

Anonymous
Not applicable

Thanks for the great solution. Can we make the same flow work for more than one document libraries. I have a requirement to send one email out at the end of the day to a user listing all the files uploaded at the site collection level, any idea how that would work @v-xida-msft @mhambalek@Anonymous.

 

I have 13 subsites in a site collection and each contains 10 libraries. So i do not want to send one email per library but just one email for the files uploaded in different libraries across the site collection, is this possible using flow? 

Hi, 

 

I copied your flow however the list in the email returns as blank evn when the files are added. 

 

Any ideas why that might be?

 

Anonymous
Not applicable

Hi @v-xida-msft ,

 

I would like to do the same thing but with all of the files attached to the email. How would I do so?

Ben425
Frequent Visitor

I tried replicating the solution but I receive a blank email. 

 

The test runs successful and this is what I see when I click on the Filter Array and Select actions. I see click to downloads which I don't believe is passed on to the next action. 

 

What am I missing here? 

 

Ben425_0-1596348327156.png

Ben425_1-1596348365664.png

 

 

I am having the same exact problem as @Ben425 

does anyone have the solution for this issue?

 

@mhambalek @agatakurylak @Anonymous @ghultstrand 

Hi Kris,

 

This is really good...i have set it up on my sharepoint (plus i have added a condition that if the is empty then to send an email saying that there was no files uploaded).

 

this works great for files that i have uploaded myself but when a file has been uploaded by a different user then its not recognized as being uploaded and therefore the no files uploaded email get sent.

do you have any ideas why a file uploaded by another user isn't being recognized by the flow at all??

 

Thanks

 

bobMate 

Helpful resources

Announcements

Power Platform Connections - Episode 7 | March 30, 2023

Episode Seven of Power Platform Connections sees David Warner and Hugo Bernier talk to Dian Taylor, alongside the latest news, product reviews, and community blogs.     Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show.  

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.  Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218  tom_riha      theapurva  takolota     Akash17  momlo     BCLS776  Shuvam-rpa     rampprakash  ScottShearer     Rusk  ChristianAbata     cchannon  Koen5     a33ik  Heartholme     AaronKnox  okeks      Matren   David_MA     Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg    rubin_boer   cwebb365   Dorrinda   G1124   Gabibalaban   Manan-Malhotra   jcfDaniel   WarrenBelz   Waegemma   drrickryp   GuidoPreite    If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Register now for the Business Applications Launch Event | Tuesday, April 4, 2023

Join us for an in-depth look into the latest updates across Microsoft Dynamics 365 and Microsoft Power Platform that are helping businesses overcome their biggest challenges today.   Find out about new features, capabilities, and best practices for connecting data to deliver exceptional customer experiences, collaborating, and creating using AI-powered capabilities, driving productivity with automation—and building towards future growth with today’s leading technology.   Microsoft leaders and experts will guide you through the full 2023 release wave 1 and how these advancements will help you: Expand visibility, reduce time, and enhance creativity in your departments and teams with unified, AI-powered capabilities.Empower your employees to focus on revenue-generating tasks while automating repetitive tasks.Connect people, data, and processes across your organization with modern collaboration tools.Innovate without limits using the latest in low-code development, including new GPT-powered capabilities.    Click Here to Register Today!    

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.   Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.     Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.      Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Users online (3,807)