A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
nevermind, figured it out.
Just in case someone wants to do something similar, here is a possible solution
Column A has the addresses
in Column B I ran this formula =FIND("@",A2) - This gives the number of characters before the @ sign. Could not find a function that gave me the number of characters after the @ sign
In Column C I used this =LEN(A2) to find the total length of the text
In column D I used =RIGHT(A2,C2-B2+1) this basically grabs the characters from the right where result is Column C total Less Column B total plus 1 (This is because i wanted the @ sign included in the result.
There is probably a simpler way to do this... suggestions welcome