Hi,
I have migrated my data from Google sheet and each record has a unique code (i.e. TO-1234). I want to autogenerate a new number in increments of 1 for each record that is added which shold not a duplicate of any previous code listed in the field.
;
in regex the formula is:
=MAX(
ARRAYFORMULA(
value(
if(REGEXREPLACE({N3:N9290},“TO-”,"")=“XXXX”,
“”, REGEXREPLACE({N3:N9290},“TO-”,""))
)
)
)+1
I can’t figure out how to replicate this in Airtable. Help!
Thanks

