I've got names and emails exported from one sales system that I am trying to move into my email service provider. I have to normalize the data.
The email field has data like this:
John Smith <jsmith@gmail.com>
I want to algorithmically turn all email field entries into this:
jsmith@gmail.com
Do you know the best tool, script, process or excel function to do this? It's racking my brain, because I don't want to do it manually.
if contains('<') and contains('>') then return field.substring(indexofLast('<'),indexofLast('>') ) else return field? – jcolebrand♦ Feb 8 '11 at 14:47