I have
=IF([Source Detail]@row <> "", MID([Source Detail]@row, FIND(" ", [Source Detail]@row), 100))
what it is missing is if there is no 2nd word, then give me 9 letters from left of the word.
Above formula works when I have following word in Source Detail :
Source Detail : Testing This
Above formula doesn't work when I have following word in the Source Detail
Source Detail: Testingthis
I tried the following but doesn't work I get incorrect argument or invalid operator errors.
=IF(OR([Source Detail]@row <> " ", LEFT([Source Detail]@row, 9), [Source Detail]@row <> "", (MID([Source Detail]@row, FIND(" ", [Source Detail]@row), 100))))
=IF(OR([Source Detail]@row <> "", [Source Detail]@row <>" ", MID([Source Detail]@row, FIND(" ", [Source Detail]@row), 100))
There should be if this, give me this response, else give me this response.
I am missing the part that says, if it doesn't have "space" or 2nd word, then give me 9 letters of whatever is in there.
Your help is appreciated.