One way:
=LEFT(TRIM(A1),3) & MID(Trim(A1), FIND(" ",TRIM(A1))+1,2) &
MID(TRIM(A1), FIND("^", SUBSTITUTE(TRIM(A1)," ", "^", 2))+1,1)
Note there's no error checking - if the cell contains less than three
words, it will return an error.
In article ,
"Mirsten Choiple" wrote:
I want to use Excel to create codes using the 321 system.
B1 contains a book title. (eg French Lieutenant's Woman, The).
A1 to have the first three letters of the first word, the first two letters
of the second word and the first letter of the third word. (eg FreLiW).
If somone could help me find a formula that will do this, I'd be very
grateful indeed.
|