Stacking multiple columns on to one?

后端 未结 8 1227
遥遥无期
遥遥无期 2020-12-01 02:13

I am using Google SpreadSheet, and I\'m trying to have multiple sheets containg a list of words. On the final sheet, I would like to create a summative list, which is a comb

8条回答
  •  悲&欢浪女
    2020-12-01 02:27

    =TRANSPOSE(SPLIT(TEXTJOIN("@",TRUE,TRANSPOSE(A:C),TRANSPOSE(D1:D5)),"@",FALSE,FALSE))

    • use a preferred delimiter absent in the data (instead of @) if needed
    • the first 1 (TRUE) parameter means IGNORE EMPTY, which is very important in this case..
    • the A:C and D1:D5 are the ranges to combine
    • all values remain there - not using UNIQUE

提交回复
热议问题