alpha numeric sorting

  • Thread starter Thread starter troubled
  • Start date Start date
T

troubled

I have a list of names, a comma, then numbers. How do I sort by the numbers.
example

John Doe,245
jane Doe,123
Robert k,999
Dan Doe,522 Sort to

Jane Doe,123
John Doe,245
Dan Doe,522
Robert K,999

Thanks
 
You can using a helper column

--With the data in Col A apply the below formula in ColB cell B1 and copy
down.
=0+MID(A1,FIND(",",A1)+1,99)

--This will extract the numbers..Select ColA and ColB.; Sort by ColB. Once
sorted you can remove ColB or keep it hidden...(for future sorts..)

If this post helps click Yes
 
=RIGHT(A1,3)
where A1 equals first data then copy down then sort
assumes all right three characters are numbers
 
Back
Top