cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
mmollet
Community Champion
Community Champion

Add Row to Excel Table issue

I have a flow that is working well... when it works. The issue is I have a step where I take a compose output in JSON format and add a step that adds it into an excel table. This all works but sometimes this step will take 10+ min while other times it takes 1 sec. When I check that same point in the run on other flow runs it completes in 1 sec. Any ideas on how to make this occur less or how to make it retry faster etc? This is killing the flows usability as 2 min is acceptable but 22 min is far from is. 

 

This is the issue I am getting.

Screenshot 2023-03-20 at 2.17.51 PM.png

 

And here is the same point in the flow the previous run where it had no issues. 

Screenshot 2023-03-20 at 2.25.49 PM.png

 

 

TYIA!


If this post solves your issue please mark it as a solution.
1 ACCEPTED SOLUTION

Accepted Solutions

I think I am understanding your flow much better now. I have not done anything exactly like this, but I think the concurrency in your Apply to each may be causing the issue.

 

I thought initially you had some process where you just needed to add rows to an existing spreadsheet. In reality, you are getting data from SharePoint, processing it, creating a separate spreadsheet for a number of people from a template file, and then sending this to them. You said you have concurrency set to 50. I would try lowering that until performance is acceptable. There is probably some throttling going on at this setting.

 

This lists some of the limits of concurrency: Limits and configuration - Power Automate | Microsoft Learn

 

One thing I have done when I have hit some throttling limits is to put the steps you have in your apply to each inside of a do Until. I then limit how many items can be returned from the Get items action (in situations where I have applied this, the throttling limit kicks in at 100, so I limit it to 99 items. I create a variable named Completed with the default value of Pending and set the Do until to run until it equals Completed.

 

Then after the get items action, I have a condition set to where the length of the items from the Get items action is greater than 0. The condition uses this expression:

int(length(outputs('Get_items')?['body/value']))

 If it is greater than 0, it runs down the Yes side and loops again. If it is zero, then it goes down the No side and sets the Completed variable to completed so it does not loop again.

 

In my SharePoint list where I am getting the items, there is a column with the default value of Pending. In my apply to each, it updates this to Processed. The Get items action has a filter query to get the pending items.

getitems.jpg

At the end of the yes, there is a delay of two minutes to allow the throttle limit to reset. The flow looks like this:

David_MA_1-1679498913628.png

 

View solution in original post

12 REPLIES 12
David_MA
Super User
Super User

Have you tried enabling concurrency in the apply to each action?

wskinnermctc
Super User
Super User

I've noticed those issues if the workbook is opened. Even more if the workbook is opened and a cell is selected like a value is about to be typed into the cell.

It is like PA is trying to call the workbook but getting denied because it is opened or being used.

 

You can do it to an open workbook, but there seems to be some delay or timeouts with power automate.

Most likely related to Excel getting locked as explained here: Excel file is locked for editing - Microsoft Support. This probably affects Power Automate, which is...

 

I have encountered this in some of my flows, but since it hasn't failed, I have not looked into it much further. I've tried to duplicate this in different ways and the flow has always added or updated the row. There has to be some certain behavior in Excel that triggers it to lock it from editing.

 

This may be key from the above Microsoft post:
Tip: Sometimes a file may get locked if everyone editing isn't using a version that supports co-authoring. To co-author together, make sure everyone is using the Microsoft 365 subscription version of Excel or Excel for the web.

 

I know in my company we still have a few users on Office 2016 for some legacy applications support.

wskinnermctc
Super User
Super User

@mmollet Are you using the Excel file as a source for something else? If there is an issue about time delays, you could use a SharePoint List instead of Excel.

mmollet
Community Champion
Community Champion

My flow gets a start date, an end date, the user's email, and a json array of users to get rows for from power apps. It creates a single excel file with a single table for each user passed in and is a table of their time entries between the two dates passed in. I will post Images of the flow below.

 

Flow Details

  • The outer loop is set to a concurrency of 50 as I have 20-30 users and why not run them all in parallel. (if i am misunderstanding how this works please let me know)
  • The inner loop has a concurrency of 1. (not sure if this is correct but seems to work fine)
  • Get items filter query makes sure to only pull rows for the current user and only rows that have a non-null end date.
  • Gets the template, creates a copy of that file with username+datetime as file name then loops through the output of above step and inserts rows with dates inside the valid range by using a compose statement to build the object.
  • Delay to allow row addition to finish
  • Get contents of the new excel file/table
  • Send as attachment
  • Once this all works the file will simply be deleted after the email is sent as it is no longer needed. 
  • No other users have access to the file that is created, the template, the SP list, or the folder any of the items are even in.

 

Also while I'm here I am getting a blank line at the top of each table for each user. Has 0 impact but my perfectionist brain is really not enjoying it all so any ideas on fixing that would be appreciated as well. Thank you so much for all the help and suggestions.

Screenshot 2023-03-22 at 8.53.54 AM.png

 

Screenshot 2023-03-22 at 8.54.15 AM.png

 

Screenshot 2023-03-22 at 8.54.23 AM.png

 

Screenshot 2023-03-22 at 8.53.36 AM.png

 


If this post solves your issue please mark it as a solution.

Grabbing data from a single SP list based on UserName column and EndTime column via get items call from flow. Output is an excel table/file that also has formulas for calculating line item totals as well as overall totals for two different types of entries, "Travel" entries and anything non-travel. This file is then attached to an email and sent to the accountant as that users time sheet for the week. The file is created using a template word doc like this: 

 

Screenshot 2023-03-22 at 9.42.30 AM.png

 


If this post solves your issue please mark it as a solution.

I think I am understanding your flow much better now. I have not done anything exactly like this, but I think the concurrency in your Apply to each may be causing the issue.

 

I thought initially you had some process where you just needed to add rows to an existing spreadsheet. In reality, you are getting data from SharePoint, processing it, creating a separate spreadsheet for a number of people from a template file, and then sending this to them. You said you have concurrency set to 50. I would try lowering that until performance is acceptable. There is probably some throttling going on at this setting.

 

This lists some of the limits of concurrency: Limits and configuration - Power Automate | Microsoft Learn

 

One thing I have done when I have hit some throttling limits is to put the steps you have in your apply to each inside of a do Until. I then limit how many items can be returned from the Get items action (in situations where I have applied this, the throttling limit kicks in at 100, so I limit it to 99 items. I create a variable named Completed with the default value of Pending and set the Do until to run until it equals Completed.

 

Then after the get items action, I have a condition set to where the length of the items from the Get items action is greater than 0. The condition uses this expression:

int(length(outputs('Get_items')?['body/value']))

 If it is greater than 0, it runs down the Yes side and loops again. If it is zero, then it goes down the No side and sets the Completed variable to completed so it does not loop again.

 

In my SharePoint list where I am getting the items, there is a column with the default value of Pending. In my apply to each, it updates this to Processed. The Get items action has a filter query to get the pending items.

getitems.jpg

At the end of the yes, there is a delay of two minutes to allow the throttle limit to reset. The flow looks like this:

David_MA_1-1679498913628.png

 

mmollet
Community Champion
Community Champion

I am going to check out the article you posted. Thank you btw! My thought was that if I have 20-30 employees that I would want my concurrency to be at least at that level so that each iteration of the loop could get assigned its own thread on the server side as the flow ran. This would mean that my 1 min delay would be a 1 min total rather than 1min X number of users total if they ran one after the other for example. I am going to try to lower this to 30 and see what happens. Ty again!


If this post solves your issue please mark it as a solution.
wskinnermctc
Super User
Super User

Half the time I see issues here is a result of trying to use Excel as form of middle calculator within the flow.

 

Users are familiar with Excel and set up formulas or lookups within a workbook. Then they try to plug in items from power automate and let Excel do the math/lookups.

This is not a good route to go for multiple reasons. Delays, Calculation Doesn't work on closed books, not transparent, rarely supports rapid flow runs. 

 

It is better to find a process or method that has Power Automate doing the calculations or lookups. This might require setting up tables differently or utilizing different lists. It might take some extra work to figure out how to put the correct expression or format in Power Automate to get the result you want, but it will be a much more transparent and consistent process.

The formulas in the excel sheet are:

=SUM(UserHoursTable[MinutesOnTask])-$L$5 to get total normal hours

=SUMIF(UserHoursTable[TaskCategory],"Travel",UserHoursTable[MinutesOnTask]) to get Travel hours 

=SUM(UserHoursTable[MinutesOnTask]) to get total of both types of hours combined

=($L$4*$L$3)+($L$6*$L$5) to get total pay owed (Normal hours * Normal Rate) + (Travel Hours * Travel Rate)

 

I am hoping that none of these are an issue. This being in the sheet saves the accountant from having to use paper and calculate by hand for each one of 20+ employees that are hourly. There are no lookups or anything beyond what is posted in red above. I am a strong advocate of the "Excel isn't a **bleep** database so stop using as such" argument! 😂


If this post solves your issue please mark it as a solution.
mmollet
Community Champion
Community Champion

Changed the value from 50 to 30 and this flow has now run with no issues at all and only took 1:54 to complete. Seems that this has done the trick. I assumed that it would only use the needed number of threads up to a maximum of 50 but it seems there is more going on than I thought. I am going to be testing more this week so I will post any updates here good or otherwise. Thank you again for the solution!


If this post solves your issue please mark it as a solution.

If I'm looking at this correctly, the Excel workbook is made so the accountant can manually input the Green boxes? All other values exist in SharePoint List, and the unknown value is the Normal Rate and Travel Rate?

 

If you could find a way to get the Normal Rate and Travel Rate, then the special Excel sheet isn't needed. Maybe you can't and that's why this exists in the first place.

 

However, I after reading the other post and Solution, I see that the separate Excel sheets being generated and sent is helping skip over a lot of issues. The problems usually come from like you said, using Excel as a database. This process isn't really using Excel as a middle calculator, it's more like the end output is an Excel calculator, so it works.

 

Glad you got it working,

 

Helpful resources

Announcements

Exclusive LIVE Community Event: Power Apps Copilot Coffee Chat with Copilot Studio Product Team

It's time for the SECOND Power Apps Copilot Coffee Chat featuring the Copilot Studio product team, which will be held LIVE on April 3, 2024 at 9:30 AM Pacific Daylight Time (PDT).     This is an incredible opportunity to connect with members of the Copilot Studio product team and ask them anything about Copilot Studio. We'll share our special guests with you shortly--but we want to encourage to mark your calendars now because you will not want to miss the conversation.   This live event will give you the unique opportunity to learn more about Copilot Studio plans, where we’ll focus, and get insight into upcoming features. We’re looking forward to hearing from the community, so bring your questions!   TO GET ACCESS TO THIS EXCLUSIVE AMA: Kudo this post to reserve your spot! Reserve your spot now by kudoing this post.  Reservations will be prioritized on when your kudo for the post comes through, so don't wait! Click that "kudo button" today.   Invitations will be sent on April 2nd.Users posting Kudos after April 2nd at 9AM PDT may not receive an invitation but will be able to view the session online after conclusion of the event. Give your "kudo" today and mark your calendars for April 3, 2024 at 9:30 AM PDT and join us for an engaging and informative session!

Tuesday Tip: Unlocking Community Achievements and Earning Badges

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!     THIS WEEK'S TIP: Unlocking Achievements and Earning BadgesAcross the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. These badges each signify a different achievement--and all of those achievements are available to any Community member! If you're a seasoned pro or just getting started, you too can earn badges for the great work you do. Check out some details on Community badges below--and find out more in the detailed link at the end of the article!       A Diverse Range of Badges to Collect The badges you can earn in the Community cover a wide array of activities, including: Kudos Received: Acknowledges the number of times a user’s post has been appreciated with a “Kudo.”Kudos Given: Highlights the user’s generosity in recognizing others’ contributions.Topics Created: Tracks the number of discussions initiated by a user.Solutions Provided: Celebrates the instances where a user’s response is marked as the correct solution.Reply: Counts the number of times a user has engaged with community discussions.Blog Contributor: Honors those who contribute valuable content and are invited to write for the community blog.       A Community Evolving Together Badges are not only a great way to recognize outstanding contributions of our amazing Community members--they are also a way to continue fostering a collaborative and supportive environment. As you continue to share your knowledge and assist each other these badges serve as a visual representation of your valuable contributions.   Find out more about badges in these Community Support pages in each Community: All About Community Badges - Power Apps CommunityAll About Community Badges - Power Automate CommunityAll About Community Badges - Copilot Studio CommunityAll About Community Badges - Power Pages Community

Tuesday Tips: Powering Up Your Community Profile

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week's Tip: Power Up Your Profile!  🚀 It's where every Community member gets their start, and it's essential that you keep it updated! Your Community User Profile is how you're able to get messages, post solutions, ask questions--and as you rank up, it's where your badges will appear and how you'll be known when you start blogging in the Community Blog. Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile.     Password Puzzles? No Problem! Find out how to sync your Azure AD password with your community account, ensuring a seamless sign-in. No separate passwords to remember! Job Jumps & Email Swaps Changed jobs? Got a new email? Fear not! You'll find out how to link your shiny new email to your existing community account, keeping your contributions and connections intact. Username Uncertainties Unraveled Picking the perfect username is crucial--and sometimes the original choice you signed up with doesn't fit as well as you may have thought. There's a quick way to request an update here--but remember, your username is your community identity, so choose wisely. "Need Admin Approval" Warning Window? If you see this error message while using the community, don't worry. A simple process will help you get where you need to go. If you still need assistance, find out how to contact your Community Support team. Whatever you're looking for, when it comes to your profile, the Community Account Support Knowledge Base article is your treasure trove of tips as you navigate the nuances of your Community Profile. It’s the ultimate resource for keeping your digital identity in tip-top shape while engaging with the Power Platform Community. So, dive in and power up your profile today!  💪🚀   Community Account Support | Power Apps Community Account Support | Power AutomateCommunity Account Support | Copilot Studio  Community Account Support | Power Pages

Super User of the Month | Chris Piasecki

In our 2nd installment of this new ongoing feature in the Community, we're thrilled to announce that Chris Piasecki is our Super User of the Month for March 2024. If you've been in the Community for a while, we're sure you've seen a comment or marked one of Chris' helpful tips as a solution--he's been a Super User for SEVEN consecutive seasons!   Since authoring his first reply in April 2020 to his most recent achievement organizing the Canadian Power Platform Summit this month, Chris has helped countless Community members with his insights and expertise. In addition to being a Super User, Chris is also a User Group leader, Microsoft MVP, and a featured speaker at the Microsoft Power Platform Conference. His contributions to the new SUIT program, along with his joyous personality and willingness to jump in and help so many members has made Chris a fixture in the Power Platform Community.   When Chris isn't authoring solutions or organizing events, he's actively leading Piasecki Consulting, specializing in solution architecture, integration, DevOps, and more--helping clients discover how to strategize and implement Microsoft's technology platforms. We are grateful for Chris' insightful help in the Community and look forward to even more amazing milestones as he continues to assist so many with his great tips, solutions--always with a smile and a great sense of humor.You can find Chris in the Community and on LinkedIn. Thanks for being such a SUPER user, Chris! 💪 🌠  

Find Out What Makes Super Users So Super

We know many of you visit the Power Platform Communities to ask questions and receive answers. But do you know that many of our best answers and solutions come from Community members who are super active, helping anyone who needs a little help getting unstuck with Business Applications products? We call these dedicated Community members Super Users because they are the real heroes in the Community, willing to jump in whenever they can to help! Maybe you've encountered them yourself and they've solved some of your biggest questions. Have you ever wondered, "Why?"We interviewed several of our Super Users to understand what drives them to help in the Community--and discover the difference it has made in their lives as well! Take a look in our gallery today: What Motivates a Super User? - Power Platform Community (microsoft.com)

March User Group Update: New Groups and Upcoming Events!

  Welcome to this month’s celebration of our Community User Groups and exciting User Group events. We’re thrilled to introduce some brand-new user groups that have recently joined our vibrant community. Plus, we’ve got a lineup of engaging events you won’t want to miss. Let’s jump right in: New User Groups   Sacramento Power Platform GroupANZ Power Platform COE User GroupPower Platform MongoliaPower Platform User Group OmanPower Platform User Group Delta StateMid Michigan Power Platform Upcoming Events  DUG4MFG - Quarterly Meetup - Microsoft Demand PlanningDate: 19 Mar 2024 | 10:30 AM to 12:30 PM Central America Standard TimeDescription: Dive into the world of manufacturing with a focus on Demand Planning. Learn from industry experts and share your insights. Dynamics User Group HoustonDate: 07 Mar 2024 | 11:00 AM to 01:00 PM Central America Standard TimeDescription: Houston, get ready for an immersive session on Dynamics 365 and the Power Platform. Connect with fellow professionals and expand your knowledge. Reading Dynamics 365 & Power Platform User Group (Q1)Date: 05 Mar 2024 | 06:00 PM to 09:00 PM GMT Standard TimeDescription: Join our virtual meetup for insightful discussions, demos, and community updates. Let’s kick off Q1 with a bang! Leaders, Create Your Events!  Leaders of existing User Groups, don’t forget to create your events within the Community platform. By doing so, you’ll enable us to share them in future posts and newsletters. Let’s spread the word and make these gatherings even more impactful! Stay tuned for more updates, inspiring stories, and collaborative opportunities from and for our Community User Groups.   P.S. Have an event or success story to share? Reach out to us – we’d love to feature you!

Users online (7,564)