T
Tom K
It seems like this ought to be easy, but I'm stumped.
I received several thousand address records in the following format--all in
one column of an Excel worksheet:
Smith, John & Mary 123 Main St Chicago, IL 60601
Williams, Bill & Cindy 45 54th Drive Madison, WI 51375
I need to parse these into:
Last Name
First Name(s)
Street Address
City
State
Zip
I can get the last name using =LEFT(B2, FIND(",",B2)-1) and the Zip using
=RIGHT(B2,5) but I can't come up with a way to get the other fields. A quick
scan of the records shows all the street addresses seem to start with a
number, and there are no numbers in any of the first names, so it seems like
if I can find the first number reading from the left, I could grab the first
names, but neither FIND nor SEARCH seem to work. I'm using Excel 2007.
Could anyone point me to a possible approach. Seems as if this is something
others must have solved many times before.
Many thanks,
Tom K
I received several thousand address records in the following format--all in
one column of an Excel worksheet:
Smith, John & Mary 123 Main St Chicago, IL 60601
Williams, Bill & Cindy 45 54th Drive Madison, WI 51375
I need to parse these into:
Last Name
First Name(s)
Street Address
City
State
Zip
I can get the last name using =LEFT(B2, FIND(",",B2)-1) and the Zip using
=RIGHT(B2,5) but I can't come up with a way to get the other fields. A quick
scan of the records shows all the street addresses seem to start with a
number, and there are no numbers in any of the first names, so it seems like
if I can find the first number reading from the left, I could grab the first
names, but neither FIND nor SEARCH seem to work. I'm using Excel 2007.
Could anyone point me to a possible approach. Seems as if this is something
others must have solved many times before.
Many thanks,
Tom K