I am trying to see how you can match two data sets, but only return the matched value. see image of an example data set
I want the formula to read List 1 and compare to List 2 and be able to denote that row 2,3,5,6 and 8 contains values that are similar to what is in List 2
I used the following formula, but the match rate was low
arrayformula(if(isblank(G7:G50000)=TRUE,"", vlookup("*"&G7:G50000&"*",Dropdowns!K:K,1,false)))
Tried this formula, but Aggregate formula does not work in Google Sheets:
IFERROR(INDEX(Dropdowns!K:K,AGGREGATE(15,6,ROW(Dropdowns!$K$2:$K$500)/(ISNUMBER(SEARCH(Dropdowns!$K$2:$K$500,G8))),1)),"")
Tried the following formula, but "contains" needs to be specific and it doesn't allow me to search from a table.
=query(K:K,"Select K where K contains 'Lead'")