I am trying to come up with a means of translating the following data:
ID | F1 | F2 | F3 | F1% | F2% | F3% |
---|---|---|---|---|---|---|
ID1 | ID1F1Value | ID1F2Value | ID1F3Value | ID1F1%Value | ID1F2%Value | ID1F3%Value |
ID2 | ID2F1Value | ID2F2Value | ID2F3Value | ID2F1%Value | ID2F2%Value | ID2F3%Value |
into the following
ID1 | F | % |
---|---|---|
ID1 | ID1F1Value | ID1F1%Value |
ID1 | ID1F2Value | ID1F2%Value |
ID1 | ID1F3Value | ID1F3%Value |
ID2 | ID2F1Value | ID2F1%Value |
ID2 | ID2F2Value | ID2F2%Value |
ID2 | ID2F3Value | ID2F3%Value |
I am considering exporting it to EXCEL to run a VBA to process it after hours of trying to figure this out using SQL... Hoping that a SQL master could enlighten me with an amazing solution.
Thank you very much !