Google sheet arrayformula join() and split() functions

前端 未结 1 2033
青春惊慌失措
青春惊慌失措 2020-12-18 08:10

Does anybody know how to arrayformula this join function?

My formula is not as complex as the example here. ArrayFormula a Filter in a Join (Google Spr

相关标签:
1条回答
  • 2020-12-18 08:47

    Maybe try:

    =ArrayFormula(if(len(B2:B), B2:B&C2:C&D2:D&E2:E&F2:F&G2:G&H2:H&I2:I,))
    

    or

    =ArrayFormula(substitute(transpose(query(transpose(B2:I),,rows(B2:B)))," ",""))
    

    or, in case you want a space between the concatenated values:

    =ArrayFormula(trim(transpose(query(transpose(B2:I),,rows(B2:B)))))
    

    For using split() in arrayformula a workaround can be found here

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