-1

Does anyone know how to gather values from a range to a single column? for exempele... i have information in cells A1:C5 and I want those cell to be copied to Column H (H1, H2 and so on....)

pnuts
  • 58,317
  • 11
  • 87
  • 139
Guy Levy
  • 17
  • 1

2 Answers2

1

I believe your question is pretty much answered here: Stacking multiple columns on to one?

=TRANSPOSE(SPLIT(JOIN(";",A:A,B:B,C:C),";"))

Note that you could equally well just do from row 1 through 5 like this:

=UNIQUE(TRANSPOSE(SPLIT(JOIN(";",A1:A5,B1:B5,C1:C5),";")))

As mentionned by Adam, this will work with the new Google Docs, and is more simple:

={A1:A5;B1:B5;C1:C5}
Community
  • 1
  • 1
Jonathan
  • 6,507
  • 5
  • 37
  • 47
1

From the same question Jonathan linked to, I think this answer is now the better one (it is supported in the newest version of Sheets, which wasn't around when that question was first asked).

={A1:A5;B1:B5;C1:C5}

Community
  • 1
  • 1
AdamL
  • 23,691
  • 6
  • 68
  • 59