Parsing words in excel cells

A

Acfonseca

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...
 
J

Jason Morin

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
 
D

Don Guillett

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
 

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