Google Sheets – Organize Data Range into Single Column

google sheets

translating data range into single column

Looking for a way to populate a single column with all information contained within a range of cells. Let's say I want to take all of the data (A1:F12 , Sheet1) highlighted in the example picture and put it into a single column in the Sheet2 tab — is this possible?

Best Answer

  • CONCATENATE everything with a chicken
  • SPLIT the chicken and TRANSPOSE

    =ARRAYFORMULA(TRANSPOSE(SPLIT(CONCATENATE(A1:F12&"🐥"),"🐥")))