The Community will be undergoing maintenance on Friday January 10 at 2:00pm - Saturday January 11 at 2:00pm EST, and will be "read-only." For assistance during this time, please visit our Help Center.
Hi,
To link my tables just after the import (csv files) I use Automation (find record, update record,…)
But I’ve a table with 25 000 records and I made the import twice.
I just reiceved an email from Airtable to inform me that ’ my workspace reach...
Hi,
I wrote a little script who :
1/ Delete some records of the table tableSuiviFacturation
while (recordToDelete.length > 0) {
await tableSuiviFacturation.deleteRecordsAsync(recordToDelete.slice(0, 50));
recordToDelete = recordToDel...
Hi,
I’m a beginner with Airtable.
My first test is to use the automation with run script action
I created a automation on the trigger 'When a record is created ’ like this
But i don’t see the message in the console when i create a new record
I have...
I found my error.
The code was in a loop :
clientsAvecEvenement.forEach( item => {
I replace this code by
for (let item of clientsAvecEvenement) {
And it works with
await tableSuiviFacturation.createRecordAsync({