Extracting First/nth/Last Word From The String
=IFERROR(LEFT(A1,FIND(” “,A1)),””)
This is a formula which let you extract the nth word. You string is A1 cell and the number of occurence is in B1.
=TRIM(RIGHT(SUBSTITUTE(LEFT(TRIM(A1),FIND(“^^”,SUBSTITUTE(TRIM(A1)&” “,” “,”^^”,B1))-1),” “,REPT(” “,100)),100))
And finally the last word you can extract with below Excel formula:
=IF(ISERR(FIND(” “,A1)),””,RIGHT(A1,LEN(A1)-FIND(“*”,SUBSTITUTE(A1,” “,”*”,LEN(A1)-LEN(SUBSTITUTE(A1,” “,””))))))
Template
You can download the Template here – Download
Further reading: Basic concepts Getting started with Excel Cell References