i have three columns in excel, one that holds the row id, the next one a product serial number, and the last one again some serial numbers.
098 11079851 11079851
110 11089385 25853201
118 11089385 22412115
798 11079851 22412115
what i need to do, is to find if the value in column B, exists in column C. Then, i need to have a way, to have the values of column B, that were found in column C, grouped, along with their corresponding row ids.
example output of 11079851 that exists in column C: 11079851: 098, 798 perhaps one cell had the row id, and the next ones, each one having a corresponding number from column B, that may be found in column C.
in excel this is what i use so as to get the existance of each cell's value of column B in column C:
=NOT(ISERROR(MATCH(B2,$C$2:$C$1000,0)))
since i do not have excel version required (even 2016 will not have textjoin), i tried the suggested formula from below answer,
=IF(COUNTIF($C$1:$C$4,B1),B1&": "&TEXTJOIN(",",TRUE,IF($B$1:$B$4=B1,$A$1:$A$4,""))"")
but i get a 509 error. What am i missing?