cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
rmclass
Frequent Visitor

Please Help: Flow to add Google Sheet rows to Sharepoint List

Hi everyone,

 

I'm trying to build a Flow that sends rows from a Google sheet to a Sharepoint list. Each time a new row is added in the Google Sheet, I'm looking to have that row added to the Sharepoint list as well.

 

I've attached an image of my Flow here.

 

rmclass_0-1659989550930.png

 

The above Flow works but each time the Flow runs, it copies every row in the Google Sheet to the Sharepoint list again instead of just the new Google Sheet row that's been created.

 

I would like for just the new Google Sheet row to be added to Sharepoint. Could you please help me understand how I can fix this? 🙂

 

Thanks so much.

1 ACCEPTED SOLUTION

Accepted Solutions
Rhiassuring
Super User
Super User

Yes! Definitely. You could also just use "In SharePoint" Y/N, or even a "Link to SP Item", if you wanted to.

So you will Get Rows from your Google Sheet, same as before.


Then, use a Filter Array to return only those items where Date Today is Empty. 

Then, use a Parse JSON on the Output from the Filter Array so you can get the individual columns. (Run the flow once on its own up to the Filter Array, and use the Output to Generate Schema in the Parse JSON action.)

For each of those, you will iterate through and use the Create Item action in SharePoint. The difference now is that with each iteration, you'll also want to Update Row in Google Sheets to add the convertTimeZone(utcNow(),'UTC','Your Time Zone'),'M/d/yyyy') to the "Date Today" column in the current row you're using. 

That would, all in all, look like this:


Example Google Sheet before it runs:

 

Rhiassuring_4-1660087593794.png

 

The flow:

Rhiassuring_5-1660087643443.png

 

 


Proof that it worked...

 

Rhiassuring_2-1660085976164.png

Populated SharePoint list

Rhiassuring_6-1660087677001.png

 

Populated Google Sheet

 

Rhiassuring_3-1660087494680.png

 

 

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



View solution in original post

11 REPLIES 11
Rhiassuring
Super User
Super User

Hi there, 


This is because you are using "Get Rows" - so it is returning every row.  You have to use that action though since there is no trigger for "When a new row is added to Google Sheets", so I see your pain.

You will want to filter your returned "Get Rows" to only the new ones. So, we will filter the array for anything added in the last day - since the last time it ran. But, it doesn't have dates by default in the rows.

 

Do users add dates into the sheet? Would you be permitted to add a column so we can track the run times?  

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



Hi @Rhiassuring

 

Oh okay, sure let's do that. 🙂

 

Yes, I can add a column for dates in the Google Sheet. I have set up a column "Date Today" which captures the date the row was created in mm/dd/yyyy format. Does this work for what you have in mind?

 

rmclass_0-1659997790406.png

 

What would we need to do next? 🙂

 

Thanks a lot for your help by the way.

Rhiassuring
Super User
Super User

Yes! Definitely. You could also just use "In SharePoint" Y/N, or even a "Link to SP Item", if you wanted to.

So you will Get Rows from your Google Sheet, same as before.


Then, use a Filter Array to return only those items where Date Today is Empty. 

Then, use a Parse JSON on the Output from the Filter Array so you can get the individual columns. (Run the flow once on its own up to the Filter Array, and use the Output to Generate Schema in the Parse JSON action.)

For each of those, you will iterate through and use the Create Item action in SharePoint. The difference now is that with each iteration, you'll also want to Update Row in Google Sheets to add the convertTimeZone(utcNow(),'UTC','Your Time Zone'),'M/d/yyyy') to the "Date Today" column in the current row you're using. 

That would, all in all, look like this:


Example Google Sheet before it runs:

 

Rhiassuring_4-1660087593794.png

 

The flow:

Rhiassuring_5-1660087643443.png

 

 


Proof that it worked...

 

Rhiassuring_2-1660085976164.png

Populated SharePoint list

Rhiassuring_6-1660087677001.png

 

Populated Google Sheet

 

Rhiassuring_3-1660087494680.png

 

 

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



Thanks so much @Rhiassuring! 🙂

 

I've built that flow out using your flow as guidance but seem to be getting an error at the "Parse JSON" stage - 

Action 'Parse_JSON' failed
 

rmclass_0-1660093785193.png

First, I created the flow up to "filter array", ran the flow and copied the "raw output".

Then I created "Parse JSON", entered "Body" in the Content field and for the Schema section, clicked "Generate from Sample". In here, I pasted the raw output I copied from "Filter Array" flow run. Am I making a mistake somewhere with this?

 

Also, it seems like 2 additional "apply to each" controls automatically popped up when I was entering data into "Create Item" and "Update row" - "Apply to each 2" and "Apply to each 3". Will this affect anything? If so, how would we remove them without affecting the rest of the flow? 🙂

 

Here's the full flow:

rmclass_5-1660094510911.png
rmclass_4-1660094449661.png

 

Thanks again! 🙂

 

 

Rhiassuring
Super User
Super User

What is the error you're getting on your Parse JSON? It looks like you're doing it right to me, but, hard to tell. 

For your Apply To Each - as soon as you have created your filter array, and then  your Parse JSON, you will only use your Parse JSON going forward. You won't reference the Google Sheet again, it all exists in  your Parse JSON ... once it works 🙂 

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



Hey @Rhiassuring 

 

Here's the error:

 

It said "ValidationFailed. The schema validation failed."

 

rmclass_1-1660098510522.png

 

For the "apply to each" bit, do you mean we select the purple Parse JSON operators on the bottom right that pertain to each field instead of the Google Sheet ones I've currently selected below? 🙂

 

rmclass_2-1660101041214.png

 

It looks like those 2 extra "Apply to Each" controls come up automatically when I try to make selections in the fields, starting with the *Title field. 🙂

 

Rhiassuring
Super User
Super User

For the second part: Yes, only the Parse JSON outputs should be used in your creation - not the sheet.

For your Parse JSON issue, that usually happens when you've mis-pasted content or grabbed something that isn't typical of the output. Did you grab the whooooooole output? Should start with a [{

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



rmclass
Frequent Visitor

Thanks sooooo much @Rhiassuring I just ran the flow again and that worked. It was mis-pasted content. 🙂

The flow runs perfectly, I really appreciate your help!! 🙂

ina295
Helper I
Helper I

hi i couldnt find filter array "date value" how to find it ? 

 

DDB
New Member

Hello Rmclass,

I am trying to create a flow to add Google Sheet rows to Sharepoint List. What app did you use to create the flow?

I have the Filter Array Output generated Parse JSON schema, but when I run a test retreive this error:


"InvalidTemplate

Unable to process template language expressions in action 'Parse_JSON' inputs at line '0' and column '0': 'The template language expression 'outputs('Filter_array')['body/value']' cannot be evaluated because property 'body/value' doesn't exist, available properties are 'body'. Please see https://aka.ms/logicexpressions for usage details.'."
 
I have this before runing the test:
Fcorrea_0-1712960735410.png

then it gives me the error. And after the error is like this:

Fcorrea_1-1712960806090.png

 

Helpful resources

Announcements

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 (5,919)