sorting column data

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I hava column with value e.g.

abc123
def456
ghj789

I would like to sort this column on the numbers, is this possible?
 
Assuming you data are in A1 - A1000 use a helper cell. In b1 type

=MID(A1,MATCH(TRUE,ISNUMBER(1*MID(A1,ROW($1:$1000),1)),0),999)

Note it's an array so CTRL+Shift+ Enter and then drag down
This will extract the numeric part from the end of each cell
Select the 2 columns and sort on column B.
Delete or hide colimn B

Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top