KJ just had a syntax problem. S/he used semicolons instead of commas. This
formula does what s/he was aiming for:
=RIGHT(A1,LEN(A1)-SEARCH("@",A1))
This formula says to take the rightmost X number of characters from cell A1
display it in the cell with the formula. It calculates X by taking the
length of the full string in A1, finding the position number of the "@",
subtracting that number of characters from the string. So take a couple of
addresses:
[email protected]
Length of the string: 21
Position of @: 7
Rightmost # characters: 14 ... which is disney.fla.com
[email protected]
Length of the string: 19
Position of @: 6
Rightmost # characters: 13 ... which is disney.ca.com
For every email address, the formula will grab just the part that follows
the @. If your company's email addresses follow a standard format, with the
division always in the same position within the address, sorting this column
should do what you need.