Check if a cell value is found in a column where cells may have multiple values then return a third cell value
问题 I am trying to check whether the value in each cell within Column A is in Column D. Some cells in Column D have multiple values within a single cell. If the value of Column A IS found in Column D then I want the formula to return what's in Column B (value next to Column A that matched). 回答1: Try: Formula in C2 : =IF(SUMPRODUCT(--(ISNUMBER(SEARCH(A2,$D$2:$D$5))))>0,B2,"") Drag down.. 回答2: If you are looking at just row by row analysis then try this: =if(iserror(search(a2,d2)),"",b2) if you are