I am using the following Google Docs formula to display cells content if they contains a specific word or phrase:
=FILTER(Sheet7!B2:B;MMULT(SEARCH(TRANSPOSE(" "&G2:G&" ");" "&Sheet7!B2:B&" ");SIGN(ROW(Sheet7!B2:B))))
In one column, in this case I use column G, I have a list of words which a specific cell must contain to be displayed. All works well, but now I wonder if it is possible to modify this formula so I can also add a list of unwanted words in cells. I would like to use a princip:
CELL MUST CONTAIN phrase BUT NOT phrase.
For example, if cell contains BLUE SHIRT, than its content should be displayed, but if cell contains BLUE SHOES OR BLUE HAT etc., than content should NOT be displayed.
Thank you for your help!