Sorting by street address

T

T.L.

can anyone tell me how to sort a column by street name
when the street name is precided by the street number?
 
T

Tom Ogilvy

build a helper column that strips out the street name. Sort on that column.

Regards,
Tom Ogilvy
 
D

David McRitchie

Sort on a helper column perhaps in Col G with a formula similar to

G2:
=IF(LEN(A14)=0,"",MID(C2,FIND(" ", C2&" ")+1,99)) & RIGHT("00000" & LEFT(C2,FIND(" ",C2&" ")-1),5)

Use the fill handle to replicate the formula down.i
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top