Skip to main content

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!

CONCATENATE(“A”, IDNumber)


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

THANK YOU! I’ll hide the extra column - and that works. Woohoo

@Justin_Barrett @David_Skinner - appreciate it!


Reply