Welcome to the Airtable community!
Yes, it is possible. I recommend using the REGEX_EXTRACT formula. I don’t have time to write up the full formulas, but this might get you started.
This will get you the first name. You will still need to substitute the -
with a space character.
REGEX_EXTRACT({Field Name}, "^"^_]+")
This is the record ID, but you still need to remove the initial underscore.
REGEX_EXTRACT({Field Name}, "_rece^_]+")
This is the last bit.
REGEX_EXTRACT({Field Name}, " ^-_]+$")
Sorry I do not have more time.
On the other hand, this information is most likely stored somewhere else in the base as individual fields. A better method would be to pull the individual items across from their initial source fields.
Welcome to the Airtable community!
Yes, it is possible. I recommend using the REGEX_EXTRACT formula. I don’t have time to write up the full formulas, but this might get you started.
This will get you the first name. You will still need to substitute the -
with a space character.
REGEX_EXTRACT({Field Name}, "^"^_]+")
This is the record ID, but you still need to remove the initial underscore.
REGEX_EXTRACT({Field Name}, "_rece^_]+")
This is the last bit.
REGEX_EXTRACT({Field Name}, " ^-_]+$")
Sorry I do not have more time.
On the other hand, this information is most likely stored somewhere else in the base as individual fields. A better method would be to pull the individual items across from their initial source fields.
Thankyou @kuovonne !