for example is want the results to be:
123 Pine
456 Pine
145 Ross
668 Ross
NOT:
123 Pine
145 Ross
456 Pine
668 Ross
Any ideas?
Assuming all of your addresses are in this exact format (might be a poor
assumption), and that you would like a secondary sort by house number (rather
than completely ignoring it), add this in another column and sort by the result:
=TRIM(MID(A1,FIND(" ",A1)+1,LEN(A1))&" "&LEFT(A1,FIND(" ",A1)-1))
1. insert a column to the right and place the formula; which will return the
text value alone.
=IF(ISNUMBER(--LEFT(A1,1)),MID(A1,FIND(" ",A1)+1,100),A1)
2.Select both columns and sort by the inserted column
3. You can either keep this column hidden or delete after use.
If this post helps click Yes
---------------
Jacob Skaria
In an adjacent column, (if that can work) enter and pull down...
=MID(C12,FIND(" ",C12)+1,1)
Select this new column first along with the old column and sort.
Flush the new column.
HTH
Regards,
Howard
"Barto9729" <Bart...@discussions.microsoft.com> wrote in message
news:9DCF1D68-4D4A-4C40...@microsoft.com...