+ Reply to Thread
Results 1 to 2 of 2

how to un-concatenate address?

  1. #1
    Registered User
    Join Date
    02-08-2007
    Posts
    1

    Exclamation how to un-concatenate address?

    Hi,
    I have full address in once cell and I was just wondering if there any way to un-concatenate it in all different cells. Here is the example

    Cell A1

    16545 Dingo St
    suite 656
    Chicago, IL 54545

    Please help me if you know how to save all of that cell into 5 different cells (address1, address2, city, state, address).

    Thank you so much in advance

  2. #2
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by sudkool
    Hi,
    I have full address in once cell and I was just wondering if there any way to un-concatenate it in all different cells. Here is the example

    Cell A1

    16545 Dingo St
    suite 656
    Chicago, IL 54545

    Please help me if you know how to save all of that cell into 5 different cells (address1, address2, city, state, address).

    Thank you so much in advance
    Hi,

    one way, in B1:I1 put

    =LEFT(A1,FIND("@",A1)-1)
    =TRIM(MID(A1,FIND("@",A1)+1,LEN(A1)))
    =LEFT(C1,FIND("@",C1)-1)
    =TRIM(MID(C1,FIND("@",C1)+1,LEN(C1)))
    =LEFT(E1,FIND(",",E1)-1)
    =TRIM(MID(E1,FIND(" ",E1),LEN(E1)))
    =LEFT(G1,FIND(" ",G1)-1)
    =TRIM(MID(G1,FIND(" ",G1),LEN(G1)))

    and replace @ with Alt/Enter

    Formula fill this to the extent of your data, and when all appears correct, select the AllData and Copy, then Paste Special = Values back over the data.

    Columns G E C and A can then be deleted.

    hth
    ---
    Si fractum non sit, noli id reficere.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1