2

I have the following column :

A1
Miu Kei Yuk
3354
of
2018
8 April 2022

and need to separate it into 3 columns : 3354 of 2018 Miu Kei Yuk 8 April 2022

So the first and the fifth row are correct, but the row number 2, 3 and 4 needs to be in only 1 cell.

I tried transpose(A1:A5) but iu results in :

Miu Kei Yuk domingo, março 07, 1909 of  2018    8 April 2022

Is it possible to do it ?

player0
  • 124,011
  • 12
  • 67
  • 124

2 Answers2

2

try:

={A2&" "&A3&" "&A4, A1, A5}

enter image description here

or:

={A2&" "&A3&" "&A4\ A1\ A5}
player0
  • 124,011
  • 12
  • 67
  • 124
1

For Portuguese Locale use this formula or Make a copy of this example.

={TEXTJOIN(" ";1;A2:A4)\ 
  A1\
  A5}

enter image description here

For United States locale use this formula

={TEXTJOIN(" ",1,A2:A4), 
  A1,
  A5}

enter image description here

Osm
  • 2,699
  • 2
  • 4
  • 26