Textjoin: Using a unique ID, how do I concat multiple values?

后端 未结 1 724
终归单人心
终归单人心 2021-01-17 06:22

I\'m having trouble getting this to work. Basically, I have the following set of data:

In the TextJoin Formula column, I want it to do a look up against the

1条回答
  •  余生分开走
    2021-01-17 06:58

    use:

    =TEXTJOIN(",",TRUE,IF($A$2:$A$6=$A2,$B$2:$B$6,""))
    

    Depending on one's version this may require Ctrl-Shift-Enter instead of Enter when exiting edit mode.


    If one has the Dynamic Array Formula FILTER:

    =TEXTJOIN(",",,FILTER(B:B,A:A=A2))
    

    0 讨论(0)
提交回复
热议问题