Here's a simple one for any Excel users - I'm currently trying to write a function that will check if a cell contains at least one string out of an array of strings and return a TRUE/FALSE value. My function as it stands looks something like this:
=IF(ISNUMBER(SEARCH({"cat","dog","clog","frog","log","beaver"}, E2)), "og-word", "something else")
The issue with this is that the SEARCH function only checks for the first string in the array rather than checking for all of them. Any quick fixes? Not sure if this would work as I haven't checked yet, but I would rather not throw an OR function in there and repeat the SEARCH function multiple times, for cleanliness sake.
Thanks in advance for the responses!