Transpose multiple rows, varied length, to a single column?
Hello, I would like to transpose multiple rows, varied length, to a single column. There are various worksheets and each sheet has a different number of rows. Each rows have a different number of used cells. Each sheet has data starting in Column B. I would like to be able to transpose all rows to a Column A.
For example Sheet 1 has -
R1A1 |
R1A2 |
R1A3 |
R1A4 |
R1A5 |
|
|
|
R2A1 |
R2A2 |
R2A3 |
R2A4 |
|
|
|
|
R3A1 |
R3A2 |
R3A3 |
R3A4 |
R3A5 |
R3A6 |
R3A7 |
R3A8 |
Desired result -
R1A1 |
R1A2 |
R1A3 |
R1A4 |
R1A5 |
R2A1 |
R2A2 |
R2A3 |
R2A4 |
R3A1 |
R3A2 |
R3A3 |
R3A4 |
R3A5 |
R3A6 |
R3A7 |
R3A8 |
The macro that I have found that can do this uses the same range for each row and therefore it pastes empty cells. I have hundreds of row in each sheet making the removal of the empty cells time consuming.
Thanks in advance for any help or tips