1

Let us assume we have the following tow columns :

column 1

1
3
5

column 2

2
4
6

the result column

1
2
3
4
5
6

and in case the two columns are not equal in size, the combined result should be without empty cells at the end!

player0
  • 124,011
  • 12
  • 67
  • 124
Rami Alshoubaki
  • 67
  • 1
  • 2
  • 10

1 Answers1

4
=FLATTEN(A1:B)

0


=TRANSPOSE(SPLIT(TEXTJOIN("♦", 1, A1:B), "♦"))

enter image description here


=INDEX(TRANSPOSE(SPLIT(QUERY(TRANSPOSE(QUERY(TRANSPOSE(
 IF(A1:B="",,"♦"&A1:B)),,99^99)),,99^99), "♦")))

0

player0
  • 124,011
  • 12
  • 67
  • 124