Welcome to the Airtable community!
Airtable scripts have very limited input/output capabilities. It was actually inspired by command line interfaces. Thus, you cannot change anything previously output by the script (except for clearing the screen).
One possibility is for your script to continuously clear the the screen (output.clear()
) and put your new step /100 text on the screen. This technique was used by old command line interfaces as well.
You also cannot change the label of a button field–it is set in the field’s configuration and must be the same for all rows.
Finally, if you want a lot of control over your input/output, look into creating a custom app. Custom apps are a lot more work that scripts, but also are capable of doing a lot more.
Welcome to the Airtable community!
Airtable scripts have very limited input/output capabilities. It was actually inspired by command line interfaces. Thus, you cannot change anything previously output by the script (except for clearing the screen).
One possibility is for your script to continuously clear the the screen (output.clear()
) and put your new step /100 text on the screen. This technique was used by old command line interfaces as well.
You also cannot change the label of a button field–it is set in the field’s configuration and must be the same for all rows.
Finally, if you want a lot of control over your input/output, look into creating a custom app. Custom apps are a lot more work that scripts, but also are capable of doing a lot more.
Thanks @kuovonne, very helpful. Figured I’d share what I built
Now that I understand the inspiration, clearing output makes a ton of sense and I whipped up a pretty sharp UI to provide our staff with investigation capabilities by ingesting algolia API endpoints (ALSO working around Algolia’s analytics API shortcomings we did not instrument properly to deal with).
Essentially, we pull 1,000 top searches, and then roll through each search looking for a specific influencer’s individual search counts for those terms. It’s not perfect, but it’s saving their bacon while the product team reacts to the need (yay airtable!)
There’s a lot of unimportant domain knowledge here being shown, but this script successfully uses most of the scripting capabilities from airtable including:
- Fetch from external api’s (Algolia analytics in this case)
- Multiple tables
- createRecordsAsync
- selectRecordsAsync
- deleteRecordsAsync
- automations for keeping the top 1k searches fresh
- input buttons/text
- outputs
The below gif shows a fast, shallow depth against the top 10 search results for a specific shop:

Edit: source for the unicode progress bars I stole from to create the old school command line progress bar, to really embrace your inspiration haha: Unicode progress bars

Thanks @kuovonne, very helpful. Figured I’d share what I built
Now that I understand the inspiration, clearing output makes a ton of sense and I whipped up a pretty sharp UI to provide our staff with investigation capabilities by ingesting algolia API endpoints (ALSO working around Algolia’s analytics API shortcomings we did not instrument properly to deal with).
Essentially, we pull 1,000 top searches, and then roll through each search looking for a specific influencer’s individual search counts for those terms. It’s not perfect, but it’s saving their bacon while the product team reacts to the need (yay airtable!)
There’s a lot of unimportant domain knowledge here being shown, but this script successfully uses most of the scripting capabilities from airtable including:
- Fetch from external api’s (Algolia analytics in this case)
- Multiple tables
- createRecordsAsync
- selectRecordsAsync
- deleteRecordsAsync
- automations for keeping the top 1k searches fresh
- input buttons/text
- outputs
The below gif shows a fast, shallow depth against the top 10 search results for a specific shop:

Edit: source for the unicode progress bars I stole from to create the old school command line progress bar, to really embrace your inspiration haha: Unicode progress bars

Thank you for coming back and sharing your creation, especially the animated gif. It really show off the capabilities well.
Thanks @kuovonne, very helpful. Figured I’d share what I built
Now that I understand the inspiration, clearing output makes a ton of sense and I whipped up a pretty sharp UI to provide our staff with investigation capabilities by ingesting algolia API endpoints (ALSO working around Algolia’s analytics API shortcomings we did not instrument properly to deal with).
Essentially, we pull 1,000 top searches, and then roll through each search looking for a specific influencer’s individual search counts for those terms. It’s not perfect, but it’s saving their bacon while the product team reacts to the need (yay airtable!)
There’s a lot of unimportant domain knowledge here being shown, but this script successfully uses most of the scripting capabilities from airtable including:
- Fetch from external api’s (Algolia analytics in this case)
- Multiple tables
- createRecordsAsync
- selectRecordsAsync
- deleteRecordsAsync
- automations for keeping the top 1k searches fresh
- input buttons/text
- outputs
The below gif shows a fast, shallow depth against the top 10 search results for a specific shop:

Edit: source for the unicode progress bars I stole from to create the old school command line progress bar, to really embrace your inspiration haha: Unicode progress bars

Any style points scored in the Sripting app are hard-earned, this looks great.