I agree with Norie on this. However, if you want a couple of formulas, then for the
first word of the cell (A28) use:
=IF(ISERR(LEFT(A28,FIND(" ",A28)-1)),A28,LEFT(A28,FIND(" ",A28)-1))
Last word of the cell (A28) use:
=IF(LEN(A28)-LEN(SUBSTITUTE(A28," ",""))=0,A28,RIGHT(A28,LEN(A28)-FIND("*",SUBSTITUTE(A28," ","*",LEN(A28)-LEN(SUBSTITUTE(A28," ",""))))))
To get the third word, it is two steps:
This gives you the first three words (put this in cell F28):
=LEFT(A28,LEN(A28)-LEN(IF(LEN(A28)-LEN(SUBSTITUTE(A28," ",""))=0,A28,RIGHT(A28,LEN(A28)-FIND("*",SUBSTITUTE(A28," ","*",LEN(A28)-LEN(SUBSTITUTE(A28," ","")))))))-1)
Then this gives you the third word, by building on the above formula (you can't combine, because it goes beyond 1024 characters) (put in cell G28)
=IF(LEN(F28)-LEN(SUBSTITUTE(F28," ",""))=0,F28,RIGHT(F28,LEN(F28)-FIND("*",SUBSTITUTE(F28," ","*",LEN(F28)-LEN(SUBSTITUTE(F28," ",""))))))
Given this, you should be able to extract the second word.