Apr 25, 2019 06:33 AM
Hi AirTable Peeps.
I basically have 3 tabs on my AirTable base. And an ‘autonumber’ set up on each tab.
Using API I will be sending the information to local database. But each record needs a unique ID number.
I was thinking I could add a letter in front of the autonumber. So Tab 1 - has letter ‘A’ infront, the second tab can have B in front Etc.
This will avoid duplicate ID numbers.
Any idea whats the best way to do this? I have browsed community Q and A and tried a few things but not been able to do this.
To avoid confusion (for me) the name of the field/column is IDNumber.
Thanks!
Apr 25, 2019 07:32 AM
CONCATENATE(“A”, IDNumber)
Apr 25, 2019 07:34 PM
To elaborate, your primary field needs to become a formula field, with another field (possibly called {IDNumber}
using David’s example) as the autonumber field. The formula could be as David outlined, or the shorter version:
"A" & IDNumber
Apr 26, 2019 08:12 AM
THANK YOU! I’ll hide the extra column - and that works. Woohoo
@Justin_Barrett @David_Skinner - appreciate it!