I want to display all values existing in column A when a specific string exist elsewhere on that row.
I want to display all values existing in column A when a specific string exist elsewhere on that row.
=ARRAYFORMULA(JOIN(",",IF(C3:E5=A10,A3:A5,)))
Comparison = within a array formula produces the desired array. Join them with ,