I can see how to extract the name from the address (so long as all addresses start with a #), then extract the state and ZIP from there...
But I have no idea how you would expect to separate the city from the address. I'm stumped.
Assuming your data is in A1, you can use this to extract the name:
Formula:
=LEFT(A1,MIN(FIND({0,1,2,3,4,5,6,7,8,9},A1&{0,1,2,3,4,5,6,7,8,9}))-1)
To extract the State, you could use:
Formula:
=LEFT(RIGHT(A1,8),2)
and for the ZIP:
Formula:
=RIGHT(A1,5)
- Moo
* Ultimately, I would suggest what Ron said above - find out if the system can output the data into a normalized data set (with some sort of delimiter preferably!)
Bookmarks