How to extract email address from a contact list the use the value in an adjacent column

Options

Up until now, I have copied/pasted the email address manually. Nevertheless, our database has grown so much. I've tried the below formula:

=IFERROR(SUBSTITUTE(SUBSTITUTE(MID([🎓 Student]@row, FIND("<", [🎓 Student]@row) + 1, FIND(">", [🎓 Student]@row) - FIND("<", [🎓 Student]@row) - 1), "<", ""), ">", ""), "")

but after hitting enter the value on the adjacent column appears blank.

{30F29E5B-30D0-4592-9443-E216801F4346}.png
Tags:

Best Answer

  • kelly.huber
    kelly.huber ✭✭
    Answer ✓

    I was able to do this but had to add an additional column to the sheet. I have the contact column, text contact column, then a third to extract the email address. I populate the contact in the first column, do a simple copy/paste into the second (text), and have a column formula for the 3rd that extracts the email only using this:

    =SUBSTITUTE(MID([Text Contact]@row, FIND("<", [Text Contact]@row) + 1, LEN([Text Contact]@row) - (FIND("<", [Text Contact]@row) + 1)), ">", "")

    Screenshot 2025-02-10 113818.png
«1

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!