View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
nmp nmp is offline
external usenet poster
 
Posts: 11
Default Pull last word from a text string in Excel

That worked!

Thank you!

"Ron Rosenfeld" wrote:

On Mon, 25 Sep 2006 12:08:01 -0700, nmp wrote:

Is there a way to pull just the last word from a text string in Excel?

I have a sheet with a column of text descriptions that are various lengths
and the last words in each cell are various lengths. Basically I want
everything to the right of the last space.

Thanks!



=MID(A1,FIND(CHAR(1),SUBSTITUTE(A1," ",CHAR(1),
LEN(A1)-LEN(SUBSTITUTE(A1," ",""))))+1,255)


--ron