Hello,
I'm looking for some guidance on how to efficiently take the data from multiple nonadjacent columns, and place it into one long continuous column, while ignoring all blanks in the process.
The new stacked column would look like a stacked version of the columns being used to copy from, but without the blank spaces.
The "copied from" columns are variable in length. They could consist of zero rows, 1 row, or hundreds of rows.
Below is an example of this scenario...
What would be the best way for me to approach getting that "Stacked" column to populate itself automatically in that format shown there?
I'm looking for some guidance on how to efficiently take the data from multiple nonadjacent columns, and place it into one long continuous column, while ignoring all blanks in the process.
The new stacked column would look like a stacked version of the columns being used to copy from, but without the blank spaces.
The "copied from" columns are variable in length. They could consist of zero rows, 1 row, or hundreds of rows.
Below is an example of this scenario...
Book1 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
D | E | F | G | H | I | J | K | L | M | |||
8 | Col 1 | Col2 | Col 3 | Stacked | ||||||||
9 | asd | posdop | ksisj3 | asd | ||||||||
10 | 1dfg | i4359 | 1dfg | |||||||||
11 | 5er | o238duyh | lskdj2 | 5er | ||||||||
12 | 3699g | 73hdh | 87gsd | 3699g | ||||||||
13 | 02kjfg | posdop | ||||||||||
14 | 067'fdek | i4359 | ||||||||||
15 | 63hd | o238duyh | ||||||||||
16 | jsdfjd8 | 73hdh | ||||||||||
17 | 42gsd | jk342jkl | 02kjfg | |||||||||
18 | uiew78342 | 067'fdek | ||||||||||
19 | jsdfjd8 | |||||||||||
20 | 42gsd | |||||||||||
21 | kjsdkj8 | ksisj3 | ||||||||||
22 | lskdj2 | |||||||||||
23 | 87gsd | |||||||||||
24 | k9843 | 63hd | ||||||||||
25 | jk342jkl | |||||||||||
26 | uiew78342 | |||||||||||
27 | kjsdkj8 | |||||||||||
28 | k9843 | |||||||||||
Sheet1 |
What would be the best way for me to approach getting that "Stacked" column to populate itself automatically in that format shown there?