cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

Save email attachment with flow and store data in a sharepoint list

Hello
I have the following case, which I would like to automate:

I get an email with an Excel list in the appendix which is called Test,
now I want to save from the Excel list the data per row as a single entry in a sharepoint list.

Attempt at implementation:
I create a flow that controls the mail intake,
and saves the Excel list in SharePoint when it is called Test. -->Works

Now I read the saved Excel list in a further step, save the temporarily as a table,
and make individual entries out of them. --> Works

If I repeat the whole thing but after one minute I get the error message,
that the file is already open by me and cannot be changed. --> Flow fails

If I now add a timestamp to the file in the name, e.B. Test-2020-12-07-22-00,
then I can save it, but he can't find the list anymore,
because I can't include a variable in the "List rows in table" step under File.

Do you have an idea how to get it?

Greetings David

29 REPLIES 29
annajhaveri
Most Valuable Professional
Most Valuable Professional

Hello @dv1407 ,

 

Can you please provide screenshot of your flow, esp, the actions which are in the repeat loop? to understand more.

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

Here it is:

dv1407_0-1607449529966.png

dv1407_1-1607449618315.png

 

I found another error, here is the correct flow, where the error also occurs:

dv1407_3-1607450542727.png

 

 

dv1407_2-1607450526147.png

 

Issue:

{"statusCode":423,"headers":{"Pragma":"no-cache","Transfer-Encoding":"chunked","x-ms-request-id":"5c5fe572-e2af-42df-a8c1-10ab711a317e","Timing-Allow-Origin":"*","x-ms-apihub-cached-response":"false","Cache-Control":"no-cache","Date":"Tue, 08 Dec 2020 17:59:55 GMT","X-AspNet-Version":"4.0.30319","X-Powered-By":"ASP.NET","Content-Type":"application/json","Expires":"-1","Content-Length":"128"},"body":{"status":423,"message":"The resource you are attempting to access is locked","source":"api.connectorp.svc.ms"}}

 

annajhaveri
Most Valuable Professional
Most Valuable Professional

Is the action "List rows present in a table" and actions below it are added within apply to each action? If yes, can you please move all actions from "List rows present in a table" action outside apply to each, i think the main apply to each loop which loops through email attachments seems to be creating the issue.

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

Hi there, sorry, but i don't understand what to do. If I put it completely outside, then it will always be executed, even if the system name does not meet the conditions. Now I have another problem: The Excel file comes either as xlsx or xlsm. Both of them get an error after saving that the file type is not supported when I save it as xlsx.

annajhaveri
Most Valuable Professional
Most Valuable Professional

There is a solution for this issue "Hi there, sorry, but i don't understand what to do. If I put it completely outside, then it will always be executed, even if the system name does not meet the conditions." as below

 

1. Do initialize variable at top of workflow with type boolean and set its value to No

2. Then do set variable in the Yes branch of condition in the apply to each loop and set value of variable which you initialized in top of workflow, set the value to Yes

3. Then under the loop, outside of it, again add the condition, and check if the value of variable is Yes, then send email.

 

Regarding the  The Excel file comes either as xlsx or xlsm. Both of them get an error after saving that the file type is not supported when I save it as xlsx - I will get back to you on this one.

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.
annajhaveri
Most Valuable Professional
Most Valuable Professional

@dv1407  can you please provide the screenshot of the error that you getting while saving the file from the flow run

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

I think it’s really tough now. If I save the Excel table now and then want to open it, then I always get the error "file format or file extension invalid"

 

Screenshot 2020-12-22 101909.jpg

 

annajhaveri
Most Valuable Professional
Most Valuable Professional

@dv1407  can you please help with screenshot of flow run that shows the error, i would like to know which action is creating error and what is the exact error.

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

@annajhaveri 

The problem is that I now get the error when saving the file, so of course I can't go any further. I have now changed the flow as you wrote it, the error in the incorrect Excel list is still there. The Excel list is saved, but I cannot open it. Error trying to select the table: Error saving flow. Code:

 

DynamicOperationRequestClientFailure, message: "Error during dynamic operation request to API" excelonlinebusiness ", operation" GetTable "with status code" BadRequest ". This may indicate invalid input parameters. Error response: {" status ": 400," message ":" Not supported file format. Please select a different file. \ R \ nclientRequestId: b7a2b7a1-4ff5-405c-b7cf-8d4802d36f07 \ r \ nserviceRequestId: d9671431-6d26-4c8f-9012-af43cf5-405c-b7cf-8d4802d36f07 \ r \ nserviceRequestId: d9671431-6d26-4c8f-9012-af43cf5-405c "," erroriform ": {" message "Date:" Not supported " . Please select another file. "}," Source ":" excelonline-we.azconn-we.p.azurewebsites.net "}"

annajhaveri
Most Valuable Professional
Most Valuable Professional

okay, are you getting this error while saving file to onedrive or in action list rows from excel? Are you using a different excel file now, or have you made changes to flow other than i asked you to do? A full screenshot of your flow run would be helpful to guide further.

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

dv1407_0-1608631876265.png

dv1407_1-1608631899876.png

dv1407_2-1608631926588.png

dv1407_3-1608631955118.png

The problem is that I cannot read the file because it is corrupt. The file, which I received by email, is fine. When I save the flow, I get the error message.

annajhaveri
Most Valuable Professional
Most Valuable Professional

okay so i see that saving file to onedrive action you have moved out of the apply to each loop,, please keep that still in the apply to each loop, as it was before, The actions from "List rows present in a table" should be out of the apply to each loop.

 

annajhaveri_0-1608634613096.png

 

 

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

I think the big problem is getting the xlsm files into an xlsx file. Could the one-drive convert?

I have now changed the flow, the error with the unsupported file format still exists.

annajhaveri
Most Valuable Professional
Most Valuable Professional

Please provide full screenshot of your flow, i wouldnt know whats the issue until i see the flow.

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.
annajhaveri
Most Valuable Professional
Most Valuable Professional

You need to put the actions in your flow in following sequence

 

annajhaveri_0-1608635738019.png

annajhaveri_1-1608635770312.png

annajhaveri_2-1608635818775.png

 

 

 

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

I have now changed it, unfortunately still the error, because the file format is not supported.

annajhaveri
Most Valuable Professional
Most Valuable Professional

Because of xlsm files? Can you first try with xlsx files?

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

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 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  

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