So not sure quite what I'm asking here, but seeing if you could give me pointers? Let's say I've got a planning table like this below. I'm trying to think of a way to have a second table that will list each ToolID and a single cell that shows all the 'items' that have X for them, dynamically.
Tool ID A B C D
Group1 x x x x
Group2 x x
Group3 x x
Group4 x x
Group5 x
Group6 x x x x
So here's what the final output would look like
Tool id Items
Group1 A,B,C,D
Group2 A,B
Group3 A,B
Group4 A,B
Group5 A
Group6 A,B,C,D
I'm trying to think of a way to do this dynamically, rather than spending time writing a long concatenate or vlookup for each column, because the matrix is ~100 rows and ~100 columns, so hand writing one big concatenation formula seems daunting.