Until now combining many columns into a single one was a cumbersome process.
Here is a formula seen in the web to stack columns with native Google Sheetsâą function:
=QUERY(ArrayFormula(SPLIT(TRANSPOSE(SPLIT(textjoin("-",TRUE,TRANSPOSE((A1:H1&","&A2:H5))),"-")),",")),"Select * where Col2<>''")
Not very comprehensive, isn't it?
Use =đŠđ§đđđđđ„đ„đđŹ(đđŒđđż_đźđżđżđźđ) and stack your columns or rows instantly wherever you need it in your spreadsheet. Without altering the initial array.
â¶ïž đđđđđ đąđšđ§ đąđšđ„ đđđ đą
https://docs.google.com/spreadsheets/d/1YBMUfJPbePUffEddtpzL2nMstkHzCcf_tjbKu6LR5kI/
đ đąđ„đ đąđŁđ§đđąđĄđŠ...
â Use =STACKARRAY(your_array, TRUE) in order to remove all blank cells
â Stack row by row instead of column by column =STACKARRAY(ref_to_your_array, , TRUE)
â To merge an array with unique values only, use =UNIQUE(STACKARRAY(your_array))
â To sort the resulting column, use =SORT(STACKARRAY(your_array))
Find out more...
https://nodatanobusiness.com/add-ons/stackarray