length of word
If your data is in Column A:
in Column B, add the formula =LEFT(A1,FIND(" ",A1)-1)
(this separates out the "Glass" part)
in Column C, add the formula =RIGHT(A1,LEN(A1)-FIND(" ",A1))
(this gets the rest of the text)
Then fill down as many rows as you have data.
This will work no matter what the first word (Glass in this case) is - it
will always separate the first word from the rest of the cell's text.
HTH,
Eric
|