I have an automation set up to find linked records from another table. The problem is, it won't run! It just says in progress. What am I doing wrong? If this is a rate limit issue (I have 458 records), how can it be avoided?
Try this:// Get references to both tableslet table1 = base.getTable('Table 1');let table2 = base.getTable('Table 2');// Retrieve records from both tableslet table1Records = await table1.selectRecordsAsync();let table2Records = await table2.selectReco...