Forum Discussion
Farlif
Dec 22, 2022Copper Contributor
Group table lines with cell content
Hello, absolut newbie here, I've got a table with 1600+ lines, and 20+ columns. Now I want to sort them according to "cell content contains word 'keyword' in column F", or better, mark those which co...
Farlif
Dec 23, 2022Copper Contributor
Well, probably too easy for you all. 🙂
I tried =IF(SEARCH("auf",F2,1), x, "") in several variations, but I always get an error message that there's a problem with the function. Can you help me?
I tried =IF(SEARCH("auf",F2,1), x, "") in several variations, but I always get an error message that there's a problem with the function. Can you help me?
- MYDec 23, 2022Brass ContributorClose but you might have luck with this:
=IF(ISNUMBER(SEARCH("auf",F2)),"X","")