Mar 04, 2021 08:30 AM
Hello!
I am looking for a way to import data using a URL that connects to a CSV and merge existing records on a recurring basis. This can be through a click of a button or the script running in the background. The CSV could also come from google sheets.
Which of the following would be easiest to automate the importing of the CSV?
If anyone has a built a similar script and is willing to share the script please do!
The ideal would then be to have additional columns in the base that only sit in Airtable. Due to data privacy concerns, we cannot use a third-party extension.
Thanks in advance!
Mar 04, 2021 10:45 AM
Welcome to the Airtable community!
Here is some food for thought.
Scripts can be run as automations or from buttons. Scripting block/app scripts can only be run from buttons, and thus cannot be run on a schedule.
Scripts cannot interact with other Airtable apps, such as the CSV import app.
Airtable automations have run limits, and if you run an automation every hour, you will run out of automation runs.
Of the options you list, your best bet is your last one: having a Google script run on a schedule, and have that script parse the CSV and use the Airtable REST API to create the records.
Mar 08, 2021 02:07 AM
Hi Kuovonne,
Thanks for coming back to me! Some questions I had:
Thanks again!
Mar 08, 2021 10:17 AM
Yes, you can run a single automation every hour for a month and not run out of automations: (1 run / hour) * (24 hours / day) * (31 days / month) = 744 runs / month.
However, the automation run limit is per workspace, not per base. So you also need to take into account all the automations you will be running across all of your bases in the workspace. Some people have bases with a lot of automations each. Other people have only one base with only one automation in the entire workspace. Scheduled automations also have not yet been out for very long, and it can be hard to determine if they are reliable enough for every situation.
If you use the Google Script option, the Google script would need to use Airtable’s REST API. The REST API can create, update, and delete records. It does have rate limits and other restrictions that make it more difficult to use than scripting app.
Mar 09, 2021 01:37 AM
Thanks Kuovonne! If anyone is willing to share a similar script that can be modified to bring in records from Google Sheets to Airtable, I would really appreciate it.