Forum Discussion
Roy Verdonschot
Sep 25, 2018Copper Contributor
if(isnumber(search("word *";B1);sheet!$A$1) with no characters preceding "word"
I use if(isnumber(search("word *";B1));sheet1!$A$1) functions a lot to find specific words after which a random word follows (that's why I use the wildcard "*"). I use this to automatically provide c...
SergeiBaklan
Sep 25, 2018Diamond Contributor
Hi Roy,
That could be
=IF(LEFT(B1,LEN("word"))="word";...roy verdonschot
Sep 26, 2018Copper Contributor
Thanks again Sergei, that was very helpful. You are awesome :D