Automate Export to Excel
I am looking at ways I can automate export a smartsheet to excel at regular frequencies.
I tried using MS Flow, but the Smartsheet connector doesn't have an option to get to get the content.
Any ideas?
Comments
-
Andrée Starå ✭✭✭✭✭✭
Hi Sudeep,
You can probably use a third-party solution like Zapier or similar. Zapier has an action that can send a sheet as an Excel attachment.
Would that work?
Have a fantastic weekend!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå| Workflow Consultant / CEO @WORK BOLD
W:www.workbold.com| E:[email protected]| P: +46 (0) - 72 - 510 99 35
Feel free to contact me about help with Smartsheet, integrations, general workflow advice, or something else entirely.
-
Marcin P ✭
The question is whether you'd like to just pull data from your sheet to excel on regular basis or create excel export to new file?
If just pull data, then you can do it within excel's power query functionality which is quite easy if you learn how to do it.
If create export to excel file each time, then as Andree said, you have to use some 3rd party solution or some api plugin.
-
JDupes ✭
@ Marcin P - Could you explain how to connect power query to Smartsheet? I’ve attempted to do so in the past and was unsuccessful.
Appreciate your input in advance.
Justin
-
ErikG ✭✭
I found this Reddit post outlining how to pull smartsheet data into Excel via Power Query. Hopefully that helps!
https://www.reddit.com/r/excel/comments/97tsbs/how_to_connecting_excel_power_query_to/
-
Andrée Starå ✭✭✭✭✭✭
Hi Erik,
Excellent resource!
Thanks for sharing!
Have a fantastic weekend!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå| Workflow Consultant / CEO @WORK BOLD
W:www.workbold.com| E:[email protected]| P: +46 (0) - 72 - 510 99 35
Feel free to contact me about help with Smartsheet, integrations, general workflow advice, or something else entirely.
-
Casey Lisak ✭✭✭
Reviving this old thread. There is a premium App - Data shuttle that can automate an import AND EXPORT . You map the columns that you want to export, i.e. pick and choose which get import/exported
You can have the files export - local, GDrive, or OneDrive
//www.santa-greenland.com/marketplace/premium-apps/data-shuttle
-
C. Peter Datz ✭✭✭
I also just got the Smartsheet Live Data Connector working for this very situation. I needed to automatically update a report for pickup by an automated FTP upload process. Works perfectly from a Smartsheet report to an Excel file via an ODBC connection and Excel PowerQuery.
Smartsheet Live Data Connector (smartsheet-platform.github.io)
Categories
You would use the below for Jan 2023 and adjust the month and year numbers accordingly for each of the other months.<\/p>
=IF(AND(MONTH([Start Date]@row)<= 1, YEAR([Start Date]@row)<= 2023, MONTH([End Date]@row)>= 1, YEAR([End Date]@row)>= 2023), [$ per month]@row)<\/p>"},{"commentID":387901,"body":"
Lets try a different approach.<\/p>
=IF(AND(VALUE(YEAR([Start Date]@row) + IF(MONTH(Start Date]@row)< 10, \"0\", \"//www.santa-greenland.com/community/discussion/43661/\") + MONTH([Start Date]@row))<= 202307<\/strong>, VALUE(YEAR([End Date]@row) + IF(MONTH([End Date]@row)< 10, \"0\", \"//www.santa-greenland.com/community/discussion/43661/\") + MONTH([End Date]@row))>= 202307<\/strong>), [$ per month]@row)<\/p> Basically we are creating a yyyymm stamp from the start and end dates and comparing them to the yyyymm stamp for that year\/month combo. The above is for July 2023 (202307).<\/p>"},{"commentID":387906,"body":"
<\/p>