I want to check if in a cell there is one word but not another. In this post there was some buzz around this matter but the elected solution included a script function. There has to be an easier way to do that.
I want to check if in the string "investimentos" the string "investimentos" is present and "fundos" is not.
I've already tried those below (disclaimer: I'm a beginner with regex):
=regexmatch("investimentos";"(investimentos)^(fundos)")
=regexmatch("investimentos";"(investimentos).*^(fundos)")
=regexmatch("investimentos";"(investimentos)(^fundos)")
=regexmatch("investimentos";"(investimentos).*(^fundos)")
I'm always getting false. Why is that?