Aug 18, 2023 12:11 PM
Hello, I've looked around for an answer to this but haven't found one yet, apologies if I've been looking in the wrong place or the answer is obvious.
My airtable has a list of filename prefixes in one field and a corresponding number of files in another. The prefixes are formatted something like this: item-01, and then there would be a file count that can range up into the dozens. What I am hoping to do is use those two fields to create a file name list. So if the file count was 2, I would want a list that would go something like
item-01-001.tif
item-01-002.tif
This data would then be output to a "filenames" tab in the airtable. Is this doable? I am not good with formulas so I've been trying various solutions using linked records and automations but I haven't had any luck.
Thank you for reading!
Aug 21, 2023 08:55 AM
Hello,
You could use the concatenate formula. If I understood your use case correctly, it would look something like this.
Formula for this example:
Aug 21, 2023 10:12 AM
Sorry but this is not what I'm looking for. In addition to the name/number matching it's important that it produce the correct number of filenames; a single entry will produce multiple filenames. So for example:
Name
item-01
File count
3
Should produce:
File name list
item-01-001.tif
item-01-002.tif
item-01-003.tif
Aug 21, 2023 10:15 AM
Ahhh, gotcha!