> Is this possible? Is there a way to sort on those numbers without
spliting
> them into separate columns?
The easiest way is to use a helper column of formulas to extract the values
on which to base the sort. For example, if
ABC 12345
were in cell A1, then the formula:
=VALUE(MID(A1,FIND(" ",A1)+1,LEN(A1)))
will extract the final number. Copy that down, then select everything and
sort on that column.
HTH,
Bernie
MS Excel MVP
"Abi" <Abi@discussions.microsoft.com> wrote in message
news:2C81F7C7-37D2-499C-B1FA-6306C2FB3567@microsoft.com...
> A co-worker has a spreadsheet with five columns. One of the columns
contains
> a string of characters similar to the following:
>
> ABC 12345 description of the project
> BBC 30492 another project description
> ZZY 01234 a third description of a project
>
> She split that column into three columns so that she could sort on the
> numbers. Now she wants to put the rows back together in the order she
sorted
> them in.
>
> Is this possible? Is there a way to sort on those numbers without
spliting
> them into separate columns?
>
> Thanks!
Bookmarks