You'll have to separate the numbers into a different column.
If all the letters are exactly two digits, you could use:
=--mid(a1,3,255)
(the -- converts the text that =mid() produces to a real number.)
Then you can sort your data by using this helper column.
> How to sort ignoring letters, Excel 2003
> ny only containing numbers,
[quoted text clipped - 5 lines]
> Thanks
> George

Signature
Dave Peterson
George - 24 Jul 2008 13:19 GMT
Thank you for your response,
Unfortunately the letters ranging from 2 to 8 Approx, Is there a macro for
it?
> You'll have to separate the numbers into a different column.
>
[quoted text clipped - 14 lines]
>> Thanks
>> George
George - 24 Jul 2008 13:20 GMT
Thank you for your response,
Unfortunately the letters ranging from 2 to 8 Approx, Is there a macro for
it?
> You'll have to separate the numbers into a different column.
>
[quoted text clipped - 14 lines]
>> Thanks
>> George
Dave Peterson - 26 Jul 2008 03:37 GMT
You could use a formula like:
=--RIGHT(A1,LEN(A1)-MIN(FIND({0,1,2,3,4,5,6,7,8,9},A1&"0123456789"))+1)
to get the rightmost group of digits.
> You'll have to separate the numbers into a different column.
>
[quoted text clipped - 18 lines]
>
> Dave Peterson

Signature
Dave Peterson