I have a string of text in Google Sheets - I would assume is the same formula
I can get the first 2 words - but not sure how to expand to get 3rd +
In Cell F2 I have typed: (no bold)
Wall panels for interior wall
FIRST WORD
SECOND WORD
THIRD WORD
???????
FOURTH WORD
???????
Thank you!
Rob
I can get the first 2 words - but not sure how to expand to get 3rd +
In Cell F2 I have typed: (no bold)
Wall panels for interior wall
FIRST WORD
Code:
=LEFT(F2; SEARCH(" ";F2;1)-1)
SECOND WORD
Code:
=MID(F2; SEARCH(" ";F2) + 1; SEARCH(" ";F2;SEARCH(" ";F2)+1) - SEARCH(" ";F2) - 1)
THIRD WORD
???????
FOURTH WORD
???????
Thank you!
Rob