The Community will be undergoing maintenance from Friday February 21 - Friday, February 29 and will be "read only" during this time. To learn more, check out our Announcements blog post.
I’m new to Airtable scripting but I have figured out quite a bit already. Using many different sources I have written a script that copies my task template into my task table bases on picking the name of the template you want to use. Now I’ve been as...
//need to loop back through and set up the predecessor field if the column: Order of Task is not empty
const taskTable = base.getTable('Tasks');
const taskView = taskTable.getView('Predecessor Column');
let taskQuery = await taskView.selectRecords...
I’m so close (hopefully I’m formatting the code correctly) below is the new loop I created for filling in the predecessor information. I’m having the user tell me the task order in their template set up and then I’m using that number to figure out wh...
Not sure if anyone has any good sample code for predecessor columns? I have the column set up in my task template but I can not figure out how to copy that information over in my script when I copy over all of the other tasks in my template and now m...