Hi,
I have the table like below:
| 1 | 2 |
| A | Free Kane|Kate|Jessica|||| |
| B | Freeman|Kiliman|Warn Kale|Low Jis|| |
I have tried Text to column and could reach up to this:
| 1 | 2.1 | 2.2 | 2.3 | 2.4 | 2.5 | 2.6 |
| A | Free Kane | Kate | Jessica | | | |
| B | Freeman | Kiliman | Warn Kale | Low Jis | | |
But my expected output is this one:
| 1 | 2.1 | 2.2 | 2.3 | 2.4 | 2.5 | 2.6 |
| A | Jessica | Kate | Free Kane | | | |
| B | Low Jis | Warn Kale | Kiliman | Freeman | | |
I would need the output rows reversed.
Many thanks for the help.