vote up 3 vote down star
1

I have an Excel spreadsheet containing a list of strings. Each string is made up of several words, but the number of words in each string is different.

Using built in Excel functions (no VBA), is there a way to isolate the last word in each string?

Examples:

  Are you classified as human? -> human?
Negative, I am a meat popsicle -> popsicle
                  Aziz! Light! -> Light!
flag

I'm wondering why you have the artificial no VBA constraint? – EBGreen Dec 8 '08 at 17:41
I can easily solve it with VBA, but I'm curious if there is a non-VBA solution. VBA tends to have performance penalties for large data sets. – eJames Dec 8 '08 at 18:20
As usual, two answers really stand out, and I have a tough time deciding which one to select as the correct answer. In this case, both Jon and BradC (with the help of Brad) have come up with correct, working solutions. – eJames Dec 8 '08 at 18:34
I have selected BradC's solution because it seems to be the more elegant of the two, and he provides a handy explanation of the function. – eJames Dec 8 '08 at 18:35

7 Answers

vote up 3 vote down check

This one is tested and does work (based on Brad's original post):

=RIGHT(A1,LEN(A1)-FIND("|",SUBSTITUTE(A1," ","|",
   LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))

If your original strings could contain a pipe "|" character, then replace both in the above with some other character that won't appear in your source. (I suspect Brad's original was broken because an unprintable character was removed in the translation).

Bonus: How it works (from right to left):
LEN(A1)-LEN(SUBSTITUTE(A1," ","")) - Count of spaces in the original string
SUBSTITUTE(A1," ","|", ... ) - Replaces just the FINAL space with a |
FIND("|", ... ) - Finds the absolute position of that replaced | (that was the final space)
Right(A1,LEN(A1) - ... )) - Returns all characters after that |

EDIT: to account for the case where the source text contains no spaces, add the following to the beginning of the formula:

=IF(ISERROR(FIND(" ",A1)),A1, ... )

making the entire formula now:

=IF(ISERROR(FIND(" ",A1)),A1, RIGHT(A1,LEN(A1) - FIND("|",
    SUBSTITUTE(A1," ","|",LEN(A1)-LEN(SUBSTITUTE(A1," ",""))))))

Or you can use the =IF(COUNTIF(A1,"* *") syntax of the other version.

link|flag
That is an elegant solution. Thank you! – eJames Dec 8 '08 at 18:32
vote up 1 vote down

=RIGHT(A1,LEN(A1)-FIND("*",SUBSTITUTE(A1," ","*",LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))

A quick search found this.

link|flag
Did you test it? Doesn't work for me with "Are you classified as human?" – edg Dec 8 '08 at 17:55
No, it does not work. Has some interesting elements, though. LEN(A1)-LEN(SUBSTITUTE(A1," ","") gives you the count of spaces in the string. – BradC Dec 8 '08 at 18:04
That is an interesting function. Too bad it doesn't work. I like the trick for being able to count the number of spaces. – eJames Dec 8 '08 at 18:24
@Brad: I edited your post to show the * characters. The original did not print them properly. With these in place, it does work. +1 – eJames Dec 8 '08 at 18:38
vote up 0 vote down

It's hard to answer your question properly if you don't indicate what makes VBA inappropriate (since you can write your own macros and functions in VBA, making it equivalent to the built-in functions).

link|flag
vote up 1 vote down

This is ugly but it sort of works. I am assuming you have the string in A1. You need an intermediate cell (well, not really, but it makes it a bit easier to read). In the intermediate cell (B1) put this formula:

=IF(NOT(ISERROR(SEARCH(" ",A1,LEN(A1)-1))),SEARCH(" ",A1,LEN(A1)-1),
  IF(NOT(ISERROR(SEARCH(" ",A1,LEN(A1)-2))),SEARCH(" ",A1,LEN(A1)-2),
   IF(NOT(ISERROR(SEARCH(" ",A1,LEN(A1)-3))),SEARCH(" ",A1,LEN(A1)-3),
    IF(NOT(ISERROR(SEARCH(" ",A1,LEN(A1)-4))),SEARCH(" ",A1,LEN(A1)-4),
     IF(NOT(ISERROR(SEARCH(" ",A1,LEN(A1)-5))),SEARCH(" ",A1,LEN(A1)-5),
      IF(NOT(ISERROR(SEARCH(" ",A1,LEN(A1)-6))),SEARCH(" ",A1,LEN(A1)-6),
       IF(NOT(ISERROR(SEARCH(" ",A1,LEN(A1)-7))),SEARCH(" ",A1,LEN(A1)-7),0)))))))

This gives you the position of the last space, as long as the last word is not longer than 7 chars - you can add more if statements to make this longer, but there will have to be a limit somewhere. Then its just a matter of =RIGHT(A1,LEN(A1)-B1) to get the actual word.

This works even if there is only one word or the whole string is shorter than your maximum word length. Still, ugly...

link|flag
This one tends to run into Excel's limit for the length of a function as well. – eJames Dec 8 '08 at 18:25
looks like it belongs on the dailywtf.com :) – andrewWinn Aug 21 at 18:58
Never said it was pretty :) I personally wouldn't use that in production. – Frans Sep 21 at 21:44
vote up 0 vote down

There are 3 approaches I can think of:

  1. Use a reverse lookup function to get location of the first space from right, use RIGHT to get the answer.
  2. Use a for loop to get location of the last space in text, use RIGHT to get the answer.
  3. Reverse the string, get location of the first space, use LEFT to get the answer and reverse it.

Sadly, all these approaches requires a bit of VBA to work.

link|flag
vote up 3 vote down

I found this on google, tested in Excel 2003 & it works for me:

=IF(COUNTIF(A1,"* *"),RIGHT(A1,LEN(A1)-LOOKUP(LEN(A1),FIND(" ",A1,ROW(INDEX($A:$A,1,1):INDEX($A:$A,LEN(A1),1))))),A1)

[edit] I don't have enough rep to comment, so this seems the best place...BradC's answer also doesn't work with trailing spaces or empty cells...
[2nd edit] actually, it doesn't work for single words either...

link|flag
Closest solution yet, but I would throw in a Trim() since a trailing space will break it. – EBGreen Dec 8 '08 at 18:15
True, probably easiest to trim() in an intermediate cell & then apply above formula to the intermediate cell. Also, spits out 0 if the cell happens to be empty, so could also be wrapped with isblank() – Jon Dec 8 '08 at 18:22
This works for me, too. Nice find! – eJames Dec 8 '08 at 18:26
vote up 1 vote down

I translated to PT-BR, as I needed this as well. Enjoy

(please note that I´ve changed the space to \ -- I needed the filename only of path strings)

=SE(ÉERRO(PROCURAR("\",A1)),A1,DIREITA(A1,NÚM.CARACT(A1)-PROCURAR("|", SUBSTITUIR(A1,"\","|",NÚM.CARACT(A1)-NÚM.CARACT(SUBSTITUIR(A1,"\",""))))))

link|flag
I don't know how to read Excel in Portuguese, so I'll have to take your word for it :) – eJames Aug 21 at 19:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.