Hi All,
I'm trying to get an array to function that will search for a selection of words within a column and if the word is found place the row number in the column, if it doesn't contain any of the words it is left blank.
Obviously this can easily be achieved by dragging down an IF statement, but its 1000's of rows so it gets laggy!
List of words are :
Private
Public
Unlinked
Linked
Unavailable
Data is in O2:O
I want the array to be in P2:O
I have figured out how to search for 1 word, but adding more words in, even when incapsulated in { } does not work.
=ARRAYFORMULA(IF(ISERR(SEARCH("public",(O21:O)))=True,"",ROW(O21:O)))
This array sort of works, however it spills the values in to adjacent columns which I don't want.
=ArrayFormula(iferror(if(SEARCH({"private", "public", "linked", "unavailable"},O21:O),row(O21:O),""),""))
Any assistance is much appreciated.
Thanks in advance
Bookmarks