cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
krish11
Helper I
Helper I

Update SharePoint list if the record exists, or Create a new record If it doesn't exist ( Record is coming from Azure data lake CSV file and I am successfully able to convert CSV record into SharePoint List.)

CSV Record is coming from Azure data lake CSV file and I am successfully able to convert that CSV record into SharePoint List. I have around 1000 records in the CSV file and it is increasing day by day. Someone from the community helped me to convert this CSV into the list.


I have tried to delete all the records from the list when the flow starts and then create them again at the end of the flow. And this works for some days but now because of slow flow performance, it is not working. So I am thinking if anyone has any idea about how can this work please reply here.

 

I have used the get items action to get previously created items in the SharePoint List. And after that compared the unique column of both (previously created list and the new records that coming from Parse JSON action), but this is not working for me. Please help if anyone has any idea about it.

 

 I appreciate your help. Thank You in advance.

 

1 ACCEPTED SOLUTION

Accepted Solutions
DamoBird365
Employee
Employee

Hi @krish11 

 

I've done this on two get items from a SharePoint list and assumed you are happy with your CSV as a JSON.  The first List is the MAIN list, the second is the one you want to create new or update if exists.

 

If you are happy with a copy / paste (ctrl + v) into the clipboard of the next step -> my clipboard , you can try the following scope FULL Solution: 

 

{"id":"78a3b1f6-c016-441f-91a2-ade1-e3f0418c","brandColor":"#8C3900","connectionReferences":{"shared_sharepointonline":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_sharepointonline/connections/shared-sharepointonl-c5e113e4-3432-4cf0-bcc3-e1f7a72a25cb"}}},"connectorDisplayName":"Control","icon":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDMyIDMyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KIDxwYXRoIGQ9Im0wIDBoMzJ2MzJoLTMyeiIgZmlsbD0iIzhDMzkwMCIvPg0KIDxwYXRoIGQ9Im04IDEwaDE2djEyaC0xNnptMTUgMTF2LTEwaC0xNHYxMHptLTItOHY2aC0xMHYtNnptLTEgNXYtNGgtOHY0eiIgZmlsbD0iI2ZmZiIvPg0KPC9zdmc+DQo=","isTrigger":false,"operationName":"DamoBird365_Update_If_Exist_or_Create_New_Item","operationDefinition":{"type":"Scope","actions":{"List1_OR_CSVJSON":{"type":"OpenApiConnection","inputs":{"host":{"connectionName":"shared_sharepointonline","operationId":"GetItems","apiId":"/providers/Microsoft.PowerApps/apis/shared_sharepointonline"},"parameters":{"dataset":"https://abdndamodev.sharepoint.com/sites/DamoBird365","table":"d4daa63c-a76b-44c5-a9ba-b0085a152782"},"authentication":{"type":"Raw","value":"@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$ConnectionKey']"}},"runAfter":{}},"List2":{"type":"OpenApiConnection","inputs":{"host":{"connectionName":"shared_sharepointonline","operationId":"GetItems","apiId":"/providers/Microsoft.PowerApps/apis/shared_sharepointonline"},"parameters":{"dataset":"https://abdndamodev.sharepoint.com/sites/DamoBird365","table":"d478fc16-0f5f-438e-b113-183ad583b397"},"authentication":{"type":"Raw","value":"@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$ConnectionKey']"}},"runAfter":{"List1_OR_CSVJSON":["Succeeded"]}},"Apply_to_each":{"type":"Foreach","foreach":"@outputs('List1_OR_CSVJSON')?['body/value']","actions":{"Filter_array":{"type":"Query","inputs":{"from":"@outputs('List2')?['body/value']","where":"@equals(item()?['Title'], items('Apply_to_each')?['Title'])"},"runAfter":{}},"Condition":{"type":"If","expression":{"greater":["@length(body('Filter_array'))",0]},"actions":{"Update_item":{"type":"OpenApiConnection","inputs":{"host":{"connectionName":"shared_sharepointonline","operationId":"PatchItem","apiId":"/providers/Microsoft.PowerApps/apis/shared_sharepointonline"},"parameters":{"dataset":"https://abdndamodev.sharepoint.com/sites/DamoBird365","table":"d478fc16-0f5f-438e-b113-183ad583b397","id":"@items('Apply_to_each')?['ID']","item/Title":"@items('Apply_to_each')?['Title']","item/SomeText":"@items('Apply_to_each')?['SomeText']"},"authentication":{"type":"Raw","value":"@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$ConnectionKey']"}},"runAfter":{}}},"runAfter":{"Filter_array":["Succeeded"]},"else":{"actions":{"Create_item":{"type":"OpenApiConnection","inputs":{"host":{"connectionName":"shared_sharepointonline","operationId":"PostItem","apiId":"/providers/Microsoft.PowerApps/apis/shared_sharepointonline"},"parameters":{"dataset":"https://abdndamodev.sharepoint.com/sites/DamoBird365","table":"d478fc16-0f5f-438e-b113-183ad583b397","item/Title":"@items('Apply_to_each')?['Title']","item/SomeText":"@items('Apply_to_each')?['SomeText']"},"authentication":{"type":"Raw","value":"@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$ConnectionKey']"}},"runAfter":{}}}}}},"runAfter":{"List2":["Succeeded"]},"runtimeConfiguration":{"concurrency":{"repetitions":50}}}},"runAfter":{}}}

 

The solution requires an apply to each on the full list and then a filter on the second against the matching 1 to 1 columns (I have used Title in my example).  After each filter, you use a condition to check the size of the array, if there is match, the array length will be greater than 0 and you therefore update, otherwise you create new.

 

DamoBird365_0-1619113537406.png

 

Update and Create Item Expanded:

DamoBird365_1-1619113566320.png

 

My lists were pretty basic, if I update something in List1, it updates List2, if I add an item to List1, it adds to List2.

 

DamoBird365_2-1619113683490.png

 

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Cheers,
Damien


P.S. take a look at my new blog here

View solution in original post

8 REPLIES 8
DamoBird365
Employee
Employee

Hi @krish11 

 

I've done this on two get items from a SharePoint list and assumed you are happy with your CSV as a JSON.  The first List is the MAIN list, the second is the one you want to create new or update if exists.

 

If you are happy with a copy / paste (ctrl + v) into the clipboard of the next step -> my clipboard , you can try the following scope FULL Solution: 

 

{"id":"78a3b1f6-c016-441f-91a2-ade1-e3f0418c","brandColor":"#8C3900","connectionReferences":{"shared_sharepointonline":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_sharepointonline/connections/shared-sharepointonl-c5e113e4-3432-4cf0-bcc3-e1f7a72a25cb"}}},"connectorDisplayName":"Control","icon":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDMyIDMyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KIDxwYXRoIGQ9Im0wIDBoMzJ2MzJoLTMyeiIgZmlsbD0iIzhDMzkwMCIvPg0KIDxwYXRoIGQ9Im04IDEwaDE2djEyaC0xNnptMTUgMTF2LTEwaC0xNHYxMHptLTItOHY2aC0xMHYtNnptLTEgNXYtNGgtOHY0eiIgZmlsbD0iI2ZmZiIvPg0KPC9zdmc+DQo=","isTrigger":false,"operationName":"DamoBird365_Update_If_Exist_or_Create_New_Item","operationDefinition":{"type":"Scope","actions":{"List1_OR_CSVJSON":{"type":"OpenApiConnection","inputs":{"host":{"connectionName":"shared_sharepointonline","operationId":"GetItems","apiId":"/providers/Microsoft.PowerApps/apis/shared_sharepointonline"},"parameters":{"dataset":"https://abdndamodev.sharepoint.com/sites/DamoBird365","table":"d4daa63c-a76b-44c5-a9ba-b0085a152782"},"authentication":{"type":"Raw","value":"@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$ConnectionKey']"}},"runAfter":{}},"List2":{"type":"OpenApiConnection","inputs":{"host":{"connectionName":"shared_sharepointonline","operationId":"GetItems","apiId":"/providers/Microsoft.PowerApps/apis/shared_sharepointonline"},"parameters":{"dataset":"https://abdndamodev.sharepoint.com/sites/DamoBird365","table":"d478fc16-0f5f-438e-b113-183ad583b397"},"authentication":{"type":"Raw","value":"@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$ConnectionKey']"}},"runAfter":{"List1_OR_CSVJSON":["Succeeded"]}},"Apply_to_each":{"type":"Foreach","foreach":"@outputs('List1_OR_CSVJSON')?['body/value']","actions":{"Filter_array":{"type":"Query","inputs":{"from":"@outputs('List2')?['body/value']","where":"@equals(item()?['Title'], items('Apply_to_each')?['Title'])"},"runAfter":{}},"Condition":{"type":"If","expression":{"greater":["@length(body('Filter_array'))",0]},"actions":{"Update_item":{"type":"OpenApiConnection","inputs":{"host":{"connectionName":"shared_sharepointonline","operationId":"PatchItem","apiId":"/providers/Microsoft.PowerApps/apis/shared_sharepointonline"},"parameters":{"dataset":"https://abdndamodev.sharepoint.com/sites/DamoBird365","table":"d478fc16-0f5f-438e-b113-183ad583b397","id":"@items('Apply_to_each')?['ID']","item/Title":"@items('Apply_to_each')?['Title']","item/SomeText":"@items('Apply_to_each')?['SomeText']"},"authentication":{"type":"Raw","value":"@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$ConnectionKey']"}},"runAfter":{}}},"runAfter":{"Filter_array":["Succeeded"]},"else":{"actions":{"Create_item":{"type":"OpenApiConnection","inputs":{"host":{"connectionName":"shared_sharepointonline","operationId":"PostItem","apiId":"/providers/Microsoft.PowerApps/apis/shared_sharepointonline"},"parameters":{"dataset":"https://abdndamodev.sharepoint.com/sites/DamoBird365","table":"d478fc16-0f5f-438e-b113-183ad583b397","item/Title":"@items('Apply_to_each')?['Title']","item/SomeText":"@items('Apply_to_each')?['SomeText']"},"authentication":{"type":"Raw","value":"@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$ConnectionKey']"}},"runAfter":{}}}}}},"runAfter":{"List2":["Succeeded"]},"runtimeConfiguration":{"concurrency":{"repetitions":50}}}},"runAfter":{}}}

 

The solution requires an apply to each on the full list and then a filter on the second against the matching 1 to 1 columns (I have used Title in my example).  After each filter, you use a condition to check the size of the array, if there is match, the array length will be greater than 0 and you therefore update, otherwise you create new.

 

DamoBird365_0-1619113537406.png

 

Update and Create Item Expanded:

DamoBird365_1-1619113566320.png

 

My lists were pretty basic, if I update something in List1, it updates List2, if I add an item to List1, it adds to List2.

 

DamoBird365_2-1619113683490.png

 

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Cheers,
Damien


P.S. take a look at my new blog here

@DamoBird365  Thanks again for that CSV to JSON conversion. That is really helping me.

 

In this solution, you have 2 SharePoint List right? But what if I only want one Sharepoint list. Because this SharePoint list I'm using in power Apps. And that CSV is updating hourly. That's why I want the flow to update SharePoint List Hourly. So I will get freshly updated data from power Apps.

Once records are created, I only want to update that item or add new ones if don't exist in the list. Item creation is already done. Then I only want to update that same item or if CSV has any new item then want to create a new item.

In this process how we required 2 SharePoint lists that I don't understand. Could you please explain?

DamoBird365
Employee
Employee

Hi @krish11 

 

List1 is your CSV array. List 2 is your SharePoint list. I just didn’t have a csv to hand and so 2 lists were easier.

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Cheers,
Damien


P.S. take a look at my new blog here

I have tried but still not getting it. Could you please check the below screenshots.

 

krish11_0-1619123845056.png

 

In filter array, I have compared Sharepoint lists report id to parse JSON report id.

And in the update and create item step Apply to each is coming automatically.

 

krish11_2-1619124550437.png

 

 

@krish11 Looks ok. Can you explain what’s happening? An error? Is the condition not evaluating as expected? Try putting the two fields you are comparing in compose actions in the yes no branches to see what’s being evaluated. Might help understand what is going wrong?

 

Damien

First I am getting an error in the flow checker for the Odata query. but still, I saved and run it and it ran.

krish11_0-1619125919280.png

 

And the second one is it's taking 30 mins for only 50 records in the filter query step. So how would I deal with 1000 items?

The warning is a standard warning based on you accidentally querying a large data source but this is intentional.

 

During the 30 minute runtime, do you get the desired result? 

is concurrency turned on for the apply to each? Elipsis (...) and settings.

 

when you look at the history of the run, where is all the time lost? You should see on the actions.

 

How big is your csv array?

 

Damien

Yes after 30 mins I got the results only for the first time. Now it is failing at the Update item step. The error message is like a temporary error try after some time.

 

krish11_0-1619126624169.png

Now I have concurrency turned on for all 3 apply to each step. 

My CSV has a 1000 record currently.

 

I'll try again tomorrow. Maybe error would go. And update you. Thanks for tolerating me.

Helpful resources

Announcements

Celebrating the May Super User of the Month: Laurens Martens

  @LaurensM  is an exceptional contributor to the Power Platform Community. Super Users like Laurens inspire others through their example, encouragement, and active participation. We are excited to celebrated Laurens as our Super User of the Month for May 2024.   Consistent Engagement:  He consistently engages with the community by answering forum questions, sharing insights, and providing solutions. Laurens dedication helps other users find answers and overcome challenges.   Community Expertise: As a Super User, Laurens plays a crucial role in maintaining a knowledge sharing environment. Always ensuring a positive experience for everyone.   Leadership: He shares valuable insights on community growth, engagement, and future trends. Their contributions help shape the Power Platform Community.   Congratulations, Laurens Martens, for your outstanding work! Keep inspiring others and making a difference in the community!   Keep up the fantastic work!        

Check out the Copilot Studio Cookbook today!

We are excited to announce our new Copilot Cookbook Gallery in the Copilot Studio Community. We can't wait for you to share your expertise and your experience!    Join us for an amazing opportunity where you'll be one of the first to contribute to the Copilot Cookbook—your ultimate guide to mastering Microsoft Copilot. Whether you're seeking inspiration or grappling with a challenge while crafting apps, you probably already know that Copilot Cookbook is your reliable assistant, offering a wealth of tips and tricks at your fingertips--and we want you to add your expertise. What can you "cook" up?   Click this link to get started: https://aka.ms/CS_Copilot_Cookbook_Gallery   Don't miss out on this exclusive opportunity to be one of the first in the Community to share your app creation journey with Copilot. We'll be announcing a Cookbook Challenge very soon and want to make sure you one of the first "cooks" in the kitchen.   Don't miss your moment--start submitting in the Copilot Cookbook Gallery today!     Thank you,  Engagement Team

Announcing Power Apps Copilot Cookbook Gallery

We are excited to share that the all-new Copilot Cookbook Gallery for Power Apps is now available in the Power Apps Community, full of tips and tricks on how to best use Microsoft Copilot as you develop and create in Power Apps. The new Copilot Cookbook is your go-to resource when you need inspiration--or when you're stuck--and aren't sure how to best partner with Copilot while creating apps.   Whether you're looking for the best prompts or just want to know about responsible AI use, visit Copilot Cookbook for regular updates you can rely on--while also serving up some of your greatest tips and tricks for the Community. Check Out the new Copilot Cookbook for Power Apps today: Copilot Cookbook - Power Platform Community.  We can't wait to see what you "cook" up!    

Welcome to the Power Automate Community

You are now a part of a fast-growing vibrant group of peers and industry experts who are here to network, share knowledge, and even have a little fun.   Now that you are a member, you can enjoy the following resources:   Welcome to the Community   News & Announcements: The is your place to get all the latest news around community events and announcements. This is where we share with the community what is going on and how to participate.  Be sure to subscribe to this board and not miss an announcement.   Get Help with Power Automate Forums: If you're looking for support with any part of Power Automate, our forums are the place to go. From General Power Automate forums to Using Connectors, Building Flows and Using Flows.  You will find thousands of technical professionals, and Super Users with years of experience who are ready and eager to answer your questions. You now have the ability to post, reply and give "kudos" on the Power Automate community forums. Make sure you conduct a quick search before creating a new post because your question may have already been asked and answered. Galleries: The galleries are full of content and can assist you with information on creating a flow in our Webinars and Video Gallery, and the ability to share the flows you have created in the Power Automate Cookbook.  Stay connected with the Community Connections & How-To Videos from the Microsoft Community Team. Check out the awesome content being shared there today.   Power Automate Community Blog: Over the years, more than 700 Power Automate Community Blog articles have been written and published by our thriving community. Our community members have learned some excellent tips and have keen insights on the future of process automation. In the Power Automate Community Blog, you can read the latest Power Automate-related posts from our community blog authors around the world. Let us know if you'd like to become an author and contribute your own writing — everything Power Automate-related is welcome.   Community Support: Check out and learn more about Using the Community for tips & tricks. Let us know in the Community Feedback  board if you have any questions or comments about your community experience. Again, we are so excited to welcome you to the Microsoft Power Automate community family. Whether you are brand new to the world of process automation or you are a seasoned Power Automate veteran - our goal is to shape the community to be your 'go to' for support, networking, education, inspiration and encouragement as we enjoy this adventure together.     Power Automate Community Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Tuesday Tip | How to Report Spam in Our Community

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: How to Report Spam in Our Community We strive to maintain a professional and helpful community, and part of that effort involves keeping our platform free of spam. If you encounter a post that you believe is spam, please follow these steps to report it: Locate the Post: Find the post in question within the community.Kebab Menu: Click on the "Kebab" menu | 3 Dots, on the top right of the post.Report Inappropriate Content: Select "Report Inappropriate Content" from the menu.Submit Report: Fill out any necessary details on the form and submit your report.   Our community team will review the report and take appropriate action to ensure our community remains a valuable resource for everyone.   Thank you for helping us keep the community clean and useful!

Users online (4,069)