The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Hello All,
I have the following script that I use to create links between tables based on the “ID,” which is consistent between the two tables. Typically, I run this script manually every few days or so, but I have recently discovered the “Run a Scri...
Hello All,
As someone who knows nothing about JavaScript, I am trying to write a script that creates a one-to-many link between two tables. I found some code elsewhere on the forum and have modified it slightly.
I have a “Facilities” table that list...
Hi kuovonne,
Thanks for your reply! I saw that the Airtable team just fixed the scripts issue and the automation is now running perfectly. Thank you for your reply!
Hi Justin, thank you very much for your reply! I noticed the await and push functions in similar scripts for this sort of use, so I’m glad to see how they would apply in this situation.
As I mentioned in my post, I know very little JavaScript. When...
+1. I’m quite surprised that this issue with Page Designer still hasn’t been addressed more than 2.5 years after this post. It seems like a real limitation with the App and something relatively easy for Airtable to fix.
Okay so I got the code working and figured I would post it in case anyone else was having this problem.
//Define the Facilities table and query
var facTbl = base.getTable("Facilities");
var facQuery = await facTbl.selectRecordsAsync();
//Define Resu...