Help

does renaming an airtable table mean I have to change all related automations?

Topic Labels: Automations
Solved
Jump to Solution
348 2
cancel
Showing results for 
Search instead for 
Did you mean: 
hauwi
6 - Interface Innovator
6 - Interface Innovator

Hi. Sorry if this is a silly question.

 

I need to rename a table that has some airtable automations linked to it. Can anyone tell me whether the automations will dynamically change their settings to use the renamed table as before - or do I have to manually re-configure them to use the new table name?

Many thanks.

1 Solution

Accepted Solutions
dilipborad
8 - Airtable Astronomer
8 - Airtable Astronomer

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 👍

See Solution in Thread

2 Replies 2
dilipborad
8 - Airtable Astronomer
8 - Airtable Astronomer

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.