Help

File Name generator

1914 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Christos_Konteo
4 - Data Explorer
4 - Data Explorer

Hi everyone, we are interested to use Airtable as a database for video classes that we produce. Is there an already built app or script that can generate unique filenames using fields in a table? Our reasoning is we want to fill out a form that once submitted will generate a file name, we will rename the file accordingly and keep it in our database. Then at a later time we can search with the appropriate criteria and get a list of filenames that we can easily search on our local drive.

Please let me know if something like this exists.
Thank you for your help

1 Reply 1

Welcome to the Airtable community!

You can create a formula field that shows the internal record ID of each record. All of these IDs are unique.

RECORD_ID()

However, record IDs are not meaningful.

You could use a formula field that combines information the the record with an auto number field to ensure uniqueness. Note that if any of the underlying fields change values, the formula will also change value and may no longer be in sync with your external manually named file.

It is also possible to use the date/time that a record was created for uniqueness, as long as records are never created at the same time. Note that you may need to use a combination of formula to get the date/time in a format that can be used as a file name.