Imagine I have some columns of data. How can I stack multiple columns on below the other in column A?
For example, A column is blank now. B,C,D have some data.
<tbody>
</tbody>
Can all the columns be stacked in the empty column A?
<tbody>
</tbody>
This is just an example. I have 8000 columns in reality. Please help me with this. Thank you!
For example, A column is blank now. B,C,D have some data.
A | B | C | D | |
1 | ab | gh | ij | |
2 | cd | kl | ||
3 | ef | |||
4 |
<tbody>
</tbody>
Can all the columns be stacked in the empty column A?
A | |
1 | ab |
2 | cd |
3 | ef |
4 | gh |
5 | ij |
6 | kl |
7 |
<tbody>
</tbody>
This is just an example. I have 8000 columns in reality. Please help me with this. Thank you!