MATCH comma separated list of numbers to a column in Excel (no macros, no TEXTJOIN)
问题 I'm trying to match a cell with comma separated numbers (M) against a column of numbers (B), such that if any of the comma separated numbers do NOT appear in the column, the result is false. I have already this solution: {=COUNT(MATCH(TRIM(MID(SUBSTITUTE(M2,",",REPT(" ",100)),(Num_Array-1)*100+1,100)),$B$2:$B$7,0))=(LEN(M2)-LEN(SUBSTITUTE(M2,",",""))+1)} at this link: https://www.mrexcel.com/forum/excel-questions/654920-match-comma-delimited-values-cell-against-individual-values-column.html