Hi,
I keep getting error 423 locked by user in a flow since Aug 31 5:13am.
The log shows consistent successful flows until this date, and then it is only successful once every couple of hours.
eg:
Sep 10, 10:28 AM (16 min ago)
00:00:04
Succeeded
Sep 10, 9:58 AM (46 min ago)
00:00:04
Failed
Sep 10, 9:28 AM (1 h ago)
00:00:04
Failed
Sep 10, 8:58 AM (1 h ago)
00:00:03
Failed
Sep 10, 8:28 AM (2 h ago)
00:00:02
Succeeded
Sep 10, 7:58 AM (2 h ago)
00:00:02
Failed
Sep 10, 7:28 AM (3 h ago)
00:00:03
Failed
Sep 10, 6:58 AM (3 h ago)
00:00:02
Failed
Sep 10, 6:28 AM (4 h ago)
00:00:02
Failed
Sep 10, 5:58 AM (4 h ago)
00:00:02
Failed
Sep 10, 5:28 AM (5 h ago)
00:00:01
Failed
Sep 9, 9:58 PM (12 h ago)
00:00:02
Failed
Sep 9, 9:28 PM (13 h ago)
00:00:02
Failed
Sep 9, 8:58 PM (13 h ago)
00:00:03
Failed
Sep 9, 8:28 PM (14 h ago)
00:00:02
Succeeded
Sep 9, 7:58 PM (14 h ago)
00:00:03
Failed
Sep 9, 7:28 PM (15 h ago)
00:00:02
Succeeded
Sep 9, 6:58 PM (15 h ago)
00:00:02
Failed
Sep 9, 6:28 PM (16 h ago)
00:00:02
Failed
Sep 9, 5:58 PM (16 h ago)
00:00:03
Failed
Sep 9, 5:28 PM (17 h ago)
00:00:02
Failed
Sep 9, 4:58 PM (17 h ago)
00:00:05
Failed
Sep 9, 4:28 PM (18 h ago)
00:00:03
Succeeded
The Flow copies an excel file from an FTP source and writes it in Onedrive for Business. This triggers every 30 minutes.
The Excel file in Onedrive is NEVER opened by any user. Only Flow writes to the file.
I can test open and save it from Excel application and I get no lock error.
There is no logic problem in the flow, as the flow can work successfully intermittently, and was always successful until Aug 31.
thanks for your help, Matt.
I think the Flow ID is 299ee131-ca96-4027-bb90-1e9c949f04f2
Same issue here. I have a Create Table action and then immediately need to Get Rows from that table. The Create Table action though doesn't release the lock on the file when it's done with it. Files are on OneDrive.
Previously I was using the "List rows present in a table" action, which was working, but found out the hard way this is (stupidly) limited to 256 rows with no workaround.
Same issue here. I have a Create Table action and then immediately need to Get Rows from that table. The Create Table action though doesn't release the lock on the file when it's done with it. Files are on OneDrive.
Previously I was using the "List rows present in a table" action, which was working, but found out the hard way this is (stupidly) limited to 256 rows with no workaround.
Hi @MatthewGrantAU,
I used to encounter the same issue when I used Excel Online.
This is a mechanism of Excel Online, which will check out or lock when others edit content. Sometimes the file is locked by another user, and other times the "another user" is actually you.
Here Flow can be seen as a user. Its request can be seen as the user's operation.
Generally, I have to operate for a while, so that it will automatically check in.
Maybe the link below could help you a little:
Best Regards,
Barry
I'm also experiencing issues with 423 errors which are driving me mad.
I'm using a Flow to fill in a "template" Excel file, then copy it to another location before resetting the template. Everything was working perfectly until two weeks ago: my template file is now locked 24/7 and every single flow fails.
I've made a copy of the template in another folder which I've been using since. This worked for about a week, and now this second file is also locked permanently.
I should add that absolutely no one has access to the files besides the Flow.
I haven't been able to find a solution yet...
Thanks Barry,
Unfortunately, there is nothing to help me in these links.
Suggesting things like 'close the file', 'notify the locking user', 'wait an (unspecified amount) of time', are good initial troubleshooting steps, but this is an issue with FLOW not closing EXCEL files stored in ONEDRIVE FOR BUSINESS.
We (me and the many other users in the forum with these flow-related 423 errors) need Microsoft to please have a deeper look at this file lock problem and sort it out.
regards,
Matt
Hi Matt,
Are you, by any chance, using different Excel connectors inside the same flow? I.e. Excel, then Excel (OneDrive) or Excel (Business)?
Adrien
How are you running your create table? Is your create table always run and then on failure you just continue with the next step? Or are you avoiding the create table if the table already exists?
@Pieter_Veenstra, I do not know if @MatthewGrantAU is using a Create Table action, but I am. These excel files will never have a table, and there's no way to get rows without one, so we create one first. Basically, the failure now brings the entire flow to a compelte halt. We have ZERO work around.
@Anonymous here's the part where this fails. Even a delay of 1 hour doesn't work...
@Anonymous: Not using multiple connectors, in fact, there are NO Excel connectors used in this flow; It is a very simple flow that runs like this:
1. timed trigger (30min)
2. Get file from FTP
3. Create File - Write this file to OneDrive for Business
@Pieter_Veenstra: The table is already created by users in the FTP version of the file. Flow is simply copying the .xlsx file to ODfB so it can be read.
Additional Info: There is a second flow that does interact with this Excel file. It performs 'List Rows in file' on this ODfB file using the Excel(Business) connector; It is a read-only operation to get rows, and this second flow is successful every time it runs, so I hadn't considered it, but I just temporarily paused this second flow and the First, failing flow, begins to be successful each time again (after a wait for the last lock to clear).
This seems to indicate that the Excel (business) connector that performs the read-only operation to List Rows is the culprit causing the lock. Note again, this flow also runs every 30 minutes, and never fails, even though it is accessing the same file. For some reason, this read operation locks the file so the ODfB Create File operation will fail, but this flow can continue to access the file to read it successfully in the same time period. It is like a 'read-only' flag is being set by the Excel connector and never released; so a subsequent read operation passes, but a write fails.
Hope this helps you narrow it down.
regards,
Matt
You might want to have a look at this post:
https://veenstra.me.uk/2018/09/13/microsoft-flow-excel-add-a-row-into-a-table-without-failure/
I've got the feeling that create tables cause trouble. I have had my flow now running for days after I ensured that the create table doesn't fail.
Hi Matt ( @MatthewGrantAU) ,
Having multiple flows read and write to the same excel file might be causing the problems. Is it possible to merge these two flows into one or is that something that isn't possible in your process?
Hi Pieter,
thanks for the suggestions.
1. 'Create Tables causing issue' - There is no create tables operation in any flow. The table is already created in the user-modified FTP version of the Excel file and flow never updates the rows or tables or anything inside the sheet; Flow only reads the table for sending data to another operation. It is this 'read-only' Excel(Business) connector in the second flow that is locking the file.
2. 'merge the two flows' - Originally this was one flow, but I was having trouble early on with the file getting locked and then having to rename the file and update all the references to it in the flow, and this got annoying, so I separated out the function that copies the file from FTP to OneDrive so it would be less of a problem if the file became permanently locked again.
Remember also, this flow was running every 15 minutes WITHOUT FAILURE until Aug 31, when 'something' broke and the file lock issue suddenly started occuring. So, while I accept your suggestion that multiple flows accessing the file 'could' cause issues, there was no problem at all for many weeks, until this sudden intermittent failing began; It all points to a Microsoft backend/connector issue that has arisen.
Anyone from Microsoft want to join this discussion??
thanks,
Matt
Hello, @MatthewGrantAU!
Thank you for posting on the Flow Community Forum! Have you had an opportunity to apply @v-bacao-msft‘s recommendation to adapt your Flow? If yes, and you find that solution to be satisfactory, please go ahead and click “Accept as Solution” so that this thread will be marked for other users to easily identify!
Thank you for being an active member of the Flow Community!
-Gabriel
Flow Community Manager
I have a similar problem, in my case flow used to work fine, but after I added Excel "Get worksheets" and "Get tables" action blocks for troubleshooting purposes, the next time I executed the flow the target file got locked.
I found the best clue to identify the problem in this thread. Thankx @MatthewGrantAU for sharing it!
Since I did not really need these two action blocks, I removed both of them and waited for 3 hours, the file got unlocked and the flow didn't failed since them.
Let's hope Microsoft will fix "Get Rows" / "Get worksheets" / "Gat Tables" current behaviour soon, there are several threads open in this community describing File Locked related problems, at least a couple of them (this one and also https://powerusers.microsoft.com/t5/Using-Flows/Getting-error-The-file-is-locked-for-shared-use-by-w... ) with more than six different users confirming they reproduced it also...
Hi Matt,
Have you had a resolution to this problem?
I have encountered a similar error message "Error Code 423 file lock" when using the "List rows present in a table" from Excel for Business.
Does anybody in Microsoft knows or cares about resolving this problem?
Microsoft caring? That's funny!
Hello @Anonymous,
When you're building a flow to get Excel info from OneDrive use only connectors form Excel Online.
Don't mix Excel and Excel Online in own flow. I have reproduced the error 423 when using Excel.
I had no issues with the online connectors for Excel. Also when using the flow, see that the Excel file isn't open.
I hope this can help you.
Regards,
Frederik Bisback
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