I am trying to come up with a formula that will return values of headers for each row that has one more more "x". (As seen in the "results" column below)
Can this be done without use of VBA or other external scripts?
t1 | t2 | t3 | results | ||
---|---|---|---|---|---|
a | x | x | t1,t2 | ||
b | x | x | x | t1,t2,t3 | |
c | x | t3 |
{=TEXTJOIN(",";1;IF($B2:$D2="";"";$B$1:$D$1))}