+ Reply to Thread
Results 1 to 3 of 3

Thread: Parsing words in excel cells

  1. #1
    Acfonseca
    Guest

    Parsing words in excel cells

    I need to move a word from one cell to another, for examle, i have three
    words and i want to transfer only the lasts one to another cell. I can't use
    the RIGHT function because it uses a fix number of caracters but this word
    can have different leghnts...

  2. #2
    Jason Morin
    Guest

    Re: Parsing words in excel cells

    One way:

    =RIGHT(A1,MATCH(" ",MID(A1,1+LEN(A1)-ROW(INDIRECT("1:"&LEN
    (A1))),1),0)-1)

    Press ctrl/shift/enter after inserting this formula. It's
    an array formula.

    HTH
    Jason
    Atlanta, GA

    >-----Original Message-----
    >I need to move a word from one cell to another, for

    examle, i have three
    >words and i want to transfer only the lasts one to

    another cell. I can't use
    >the RIGHT function because it uses a fix number of

    caracters but this word
    >can have different leghnts...
    >.
    >


  3. #3
    Don Guillett
    Guest

    Re: Parsing words in excel cells

    One way. If I understand you, this will find the space and do what you
    desire.
    =RIGHT(F24,LEN(F24)-FIND(" ",F24)) 2 words
    =RIGHT(F24,LEN(F24)-FIND(" ",F24,FIND(" ",F24)+1)) 3 words
    --
    Don Guillett
    SalesAid Software
    donaldb@281.com
    "Acfonseca" <Acfonseca@discussions.microsoft.com> wrote in message
    news:3BC6B195-7D2E-4F6B-B040-E5C9B5EB2147@microsoft.com...
    > I need to move a word from one cell to another, for examle, i have three
    > words and i want to transfer only the lasts one to another cell. I can't

    use
    > the RIGHT function because it uses a fix number of caracters but this word
    > can have different leghnts...




+ 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.2.0