There is a data set with cells containing multiple values. I need to cross check each cell in the dataset with a predetermined list of values and return all matching values in one cell per row.
The best option would be to use TEXTJOIN function but it doesn't work in my Excel 2016. Here is the alternative code I tried to make but it returns only the first value in the array.
{=IF(SUMPRODUCT(--ISNUMBER(SEARCH(list,A2))), IF(ISNUMBER(SEARCH(list,A2)), list, ""), "")}
Will greatly appreciate any help!