+ Reply to Thread
Results 1 to 3 of 3

Separating

  1. #1
    Forum Contributor
    Join Date
    08-20-2005
    Posts
    171

    Separating

    i HAVE in cellS:

    A1: J234 TELEPHONE
    A2: J23456 WASHER

    i WANT THESE TO BECOME:
    B1: J234 C1: TELEPHONE

    B2: J23456 C2:WASHER

    THANKS

  2. #2
    Forum Contributor
    Join Date
    06-01-2006
    Posts
    324
    Use the Text to Columns option.

    go to Data > Text to Columns and follow the prompts
    Google is your best friend!

  3. #3
    Piotr Lipski
    Guest

    Re: Separating

    On Thu, 22 Jun 2006 11:33:09 -0500, T De Villiers wrote:

    > i HAVE in cellS:
    >
    > A1: J234 TELEPHONE
    > A2: J23456 WASHER
    >
    > i WANT THESE TO BECOME:
    > B1: J234 C1: TELEPHONE
    >
    > B2: J23456 C2:WASHER
    >
    > THANKS


    Formula in B1 should be:
    =IF(FIND(" ";A1;1)>0;LEFT(A1;FIND(" ";A1;1)-1);A1)

    Formula in C1 should be:
    =IF(FIND(" ";A1;1)>0;RIGHT(A1;LEN(A1)-FIND(" ";A1;1));"")

    --
    PL

+ 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