Hello @hauwi ,
No, you don't need to change the table name into Automation, Just rename it.
But keep this in mind.
In the Automation There is a Script Block( Script Action | Airtable Support) is there.
The script generally supports regular JS code excludes some Core JS features and includes some other Airtable-related functions. Read more here. Airtable Scripting
If you've used use table name something like this.
let table = base.getTable("Tasks");
console.log(`Table id: ${table.id}`);
"Tasks" is a table name in the above code. In this case, if you change the table name then you need to change that name as well.
If anyone uses Table name in the Script I strongly recommend it to use like.
let table = base.getTable("tbl90f2N7GzePWdAs"); //Tasks
console.log(`Table id: ${table.id}`);
See more about how to find base/table IDs Finding Airtable IDs | Airtable Support
If you get something then Give 👍
Hello @hauwi ,
No, you don't need to change the table name into Automation, Just rename it.
But keep this in mind.
In the Automation There is a Script Block( Script Action | Airtable Support) is there.
The script generally supports regular JS code excludes some Core JS features and includes some other Airtable-related functions. Read more here. Airtable Scripting
If you've used use table name something like this.
let table = base.getTable("Tasks");
console.log(`Table id: ${table.id}`);
"Tasks" is a table name in the above code. In this case, if you change the table name then you need to change that name as well.
If anyone uses Table name in the Script I strongly recommend it to use like.
let table = base.getTable("tbl90f2N7GzePWdAs"); //Tasks
console.log(`Table id: ${table.id}`);
See more about how to find base/table IDs Finding Airtable IDs | Airtable Support
If you get something then Give 👍
Thank you @dilipborad . That's really helpful info.