C
Carter Devereaux
I'm trying to sort a long list of email addresses by the name that follows
the "@". What's the best way to do something like that?
the "@". What's the best way to do something like that?
Dave Peterson said:I'd select the column and use data|text to columns to extract everything after
the @ symbol. Then sort the data by that column.
Another way...
Copy that column to another column.
Select that new column
Edit|replace
what: *@
with: (leave blank)
replace all
Then sort your data by that column.