seperate city, state & zip from one cell

V

vikkam

I have a databse which has city, state and zip in one cell (column)

If I want to seperate in 3 different columns how to do it ?

Thanks much

I will appreciate if you can e-mail your suggestion to
(e-mail address removed)

vikkam
(e-mail address removed)
 
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
 

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