Aug 09, 2023 01:49 PM
Hi there,
I have been searching heavily for some help on what I'm trying to achieve but haven't had any luck. What I am looking to do on Airtable is have an autogenerated number for each line item I add but it needs to have a prefix of 6700. It also needs to start at a specific number, lets say 67006789.
Is there anyway to do this?
Aug 09, 2023 02:04 PM
@dakotat This should be a simple formula solution. For me, I had to Import 55,000 records that had IDs starting at 100000 and incremented up by one, unfortunately this wouldn't have worked with the autonumber field as it starts at 1 & I did not want to delete 99,999 records just to get to the autonumber working the way I wanted.
My solution was as follows:
"6700"&({Admin_Autonumber}+6788)
Assuming that your example ID in your post above would be the first case of the 6700 prefix & autonumeric ID, The result of the above formula would be: 67006789
**Just change the addend in the example (6788) to 1 digit prior to the specific number it needs to start at & you should be good to go