G
Guest
How do you sort a column of numbers with hyphens?
Example #####-###-####.
I want to sort by the 3 middle numbers
Thanks
Example #####-###-####.
I want to sort by the 3 middle numbers
Thanks
Tom Ogilvy said:Bob's formula
=LEFT(MID(A1,FIND("-",A1)+1,99),FIND("-",MID(A1,FIND("-",A1)+1,99))-1)
would assume your data is in column A. So this would be placed in cell B1,
then copied down next to each entry in column A.