seperate city, state & zip from one cell

E

Earl Kiosterud

Vikkam,

If your addresses are well-behaved (all have a comma after the city, a space
after the state, etc., this may work:

=LEFT(A2,SEARCH(",",A2)-1)
=MID(A2,SEARCH(",",A2)+2,2)
=MID(MID(A2,SEARCH(",",A2)+2,999),SEARCH(" ",
MID(A2,SEARCH(",",A2)+2,999))+1,999)

Earl Kiosterud
mvpearl omitthisword at verizon period net
 
Top