I have data that is poorly normalized.
Something like this:
| student ID | Class | Score | Grade | Class2 | Score2 | Grade2 | Class3 | Score3 | Grade3 |
| 1 | History | 95 | A | English | 65 | D- | Science | 85 | B |
| 2 | Science | 90 | A- | Math | 80 | C- | | | |
And in the end I want this:
| Student ID | Class | Score | Grade |
| 1 | History | 95 | A |
| 1 | English | 65 | D- |
| 1 | Science | 85 | B |
| 2 | Science | 90 | A- |
| 2 | Math | 80 | C- |
I'm trying Transpose, then trimming the numbers off the name column, but I don't know how to bring the 3 records back together correctly. I'd rather not do it manually, because there are actually 121 of each field (Class, Score, Grade).