Help

Re: Parse after Punctuation

476 0
cancel
Showing results for 
Search instead for 
Did you mean: 
GTAirtable
4 - Data Explorer
4 - Data Explorer

Hi,

I have data that looks like this:

123: Tom Smith
11: Sally Smith
1200: John Doe

I would like to extract just the name with a formula. I know I need to use RIGHT/LEFT, but I can’t quite figure out how to say “extract all text after the colon.”

Thanks!

2 Replies 2

You could do something like this:

RIGHT({Text Field},LEN({Text Field})-FIND(": ",{Text Field})-1)

GTAirtable
4 - Data Explorer
4 - Data Explorer

Perfect! This works great!