I'm having a bit of trouble with a formula I've been writing. I'm trying to ask excel to find all of the cells in column B that do not contain the words in the SEARCH Function and then return the value in column A when a cell is found.
The closest I have got is it finding the cells without the words in the SEARCH function but then it would repeat what is written in column A three times which is not what I want, (I want it to write it just once). In addition it was also adding what is written in column A even if it did not meet the search criteria (e.g. It did contain the words).
I have returned the formula to how I had it originally to make it easier to understand. (without my attempts at using <>).
=IF(ROWS($1:1)>$L$2,"No Active Fishing Places",INDEX('[Fishing Contact list July 2015.xlsm]Fishing Places'!$A:$A,SMALL(IF('[Fishing Contact list July 2015.xlsm]Fishing Places'!$Q$2:$Q$80="A",IF(ISNUMBER(SEARCH({"Tonbridge Lakes","Hawkhurst Lake","Charity Lake"},'[Fishing Contact list July 2015.xlsm]Fishing Places'!$B$2:$B$80)),ROW('[Fishing Contact list July 2015.xlsm]Fishing Places'!$B$2:$B$80))),ROWS($1:1))))
Thanks in advance