Hi All, I have a situation that I'd like to see if somebody has an elegant solution for..
Imagine a list of scenarios, and a list of issues that might or not be contained in each scenario... what is the best way to get a concatenated list of all the issues contained within each scenario?
[pre]
[/pre]
The maskers could be "x" or "1" or any other marker that makes the solution simpler.
I think I got close using an array formula: {=IF(B2:E2="x",B$1:E$1,"")}, and getting an array of applicable Issues, but then CONCATENATE() will not work with an array.
Any different ideas? Any way to make CONCATENATE() work with an array?
Thought an elegant solution for this might be a candidate for a forensic post...
Thanks in advance...
ET
Imagine a list of scenarios, and a list of issues that might or not be contained in each scenario... what is the best way to get a concatenated list of all the issues contained within each scenario?
[pre]
Code:
. A B C D E F
1 Issue1 Issue2 Issue3 Issue4 List of issues
2 Scenario 1 x x x Issue1, Issue2, Issue4
3 Scenario 2 x x Issue2, Issue3
4 Scenario 3 x x x Issue1, Issue3, Issue4
5 Scenario 4 x x x Issue2, Issue3, Issue4
The maskers could be "x" or "1" or any other marker that makes the solution simpler.
I think I got close using an array formula: {=IF(B2:E2="x",B$1:E$1,"")}, and getting an array of applicable Issues, but then CONCATENATE() will not work with an array.
Any different ideas? Any way to make CONCATENATE() work with an array?
Thought an elegant solution for this might be a candidate for a forensic post...
Thanks in advance...
ET