Hi,
In 1 column I have a string that has 1 word then 2 or more words after that, how do I extract from the column the first word only?
In excel I'd use the following
=TRIM(LEFT(A2, FIND("^",SUBSTITUTE(A2, " ", "^",1)&"^")))
In Smartsheet there's no TRIM..
The below formula returns the value of the first and second word,
=LEFT([Column Test]@row, (FIND(" ", [Column Test]@row) - 0))