Backboards: 
Posts: 154
In response to "ST is best tech support: Excel: I have a spreadsheet full of addresses, but would like to split the address line into two (house number/street name)." by Name Withheld By Request

If the format of them all is "1234 main st.", you can do the following to make sure you don't get spaces

to get the number:
=LEFT(A1,FIND(" ",A1,1))

to get the street part:
=RIGHT(A1,(LEN(A1) - FIND(" ",A1,1)))



Responses:
Post a message   top
Replies are disabled on threads older than 7 days.