Delete data

G

Gary''s Student

=RIGHT(A1,LEN(A1)-FIND("@",A1)+1) including the @
=RIGHT(A1,LEN(A1)-FIND("@",A1)) to not include the @
 
J

JE McGimpsey

One way, using a formula:

=MID(A1,FIND("@",A1)+1,256)

To do it in place:

Choose Data/Text to Columns/Delimited, click Next. Check "Other" and
enter "@" in the input box. Click Next. Select the first column and
select the Do Not Import Column (Skip) radio button. Click Finish
 
Top