I thank you all for your responses. Another answer was staring me in the face. So, since I was using an IF statement I did this: =IF(ISNUMBER(SEARCH("Desktop Simulator",$J6))=TRUE,$K6,(IF(ISNUMBER(SEARCH("LOS",$J6))=TRUE,$K6,""))). It may be a little clunky but it works. I will be keeping your suggestions on file for future projects.
mintjulep the two terms are unique and they will be in a string of text.
Does anyone see a problem with my solution? Please let me know.
It works, but the formula size grows significantly when you add new conditions. Moreover, it is hard to debug. ISNUMBER returns TRUE/FALSE, no need to add "=TRUE".
Presonally I would combine SEARCH results in single OR formula, without nested IFs, esp. due to common output ($K6 or ""):
[tt]=IF(OR(ISNUMBER(SEARCH("Desktop Simulator",$J6)),ISNUMBER(SEARCH("LOS",$J6))),$K6,"")[/tt]
New condition is simple in this case:
[tt]=IF(OR(ISNUMBER(SEARCH("Desktop Simulator",$J6)),ISNUMBER(SEARCH("LOS",$J6)),ISNUMBER(SEARCH("DTS",$J6))),$K6,"")[/tt]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.