I have a spreadsheet in Excel that contains a "Member ID" in the first column, with six variables, related to this Member ID, in the next six columns.
I need to somehow convert these columns into rows, but still have the Member ID column at the beginning of each row.
Here's the data as it stands (there are 5000 rows, hence hoping to find an automated solution):
MEMBER 1 | AAA | BBB | CCC | DDD | EEE | FFF
MEMBER 2 | BBB | ZZZ | FFF | AAA | RRR | SSS
MEMBER 3 | YYY | FFF | OOO | MMM | PPP | AAA
And here's the format that I need:
MEMBER 1 AAA
MEMBER 1 BBB
MEMBER 1 CCC
MEMBER 1 DDD
MEMBER 1 EEE
MEMBER 1 FFF
MEMBER 2 BBB
MEMBER 2 ZZZ
MEMBER 2 FFF
MEMBER 2 AAA
MEMBER 2 RRR
MEMBER 2 SSS
MEMBER 3 YYY
MEMBER 3 FFF
MEMBER 3 OOO
MEMBER 3 MMM
MEMBER 3 PPP
MEMBER 3 AAA
I attempted to follow the steps in this question: Split multiple excel columns into rows , however that seems to only work for numeric values and not text.
Any help that anyone can give me would be hugely appreciated, I'm stumped as to how to do this. Thanks so much in advance!