I have a dataset that looks something like this:
Customer | Col1 | Col2 | Col3 |
---|---|---|---|
Bob | 111 | 2221 | |
Michael | 112 | ||
Anna | 113 | 2223 | |
Rachel | 114 | 2224 | 334 |
Person5 | 115 |
I'd like to put all data into one column, something like this:
Customer | Col1 |
---|---|
Bob | 111 |
Bob | 2221 |
Michael | 112 |
Anna | 113 |
Anna | 2223 |
Rachel | 114 |
Rachel | 2224 |
Rachel | 334 |
Person5 | 115 |
I tried transposing the original array and then merging the data from other columns into one column, but couldn't get it to work. We also tried pivot tables without success. I thought that an Index/Match could work, but it didn't work for merging data into one single column. How should this be done?
We're using Excel 2010 and the same data is in Google Sheets as well.