I want to transpose n columns in inputfields to one column
firstname | lastname | subject1 | date1 | note1 | subject2 | date2 | note2 |
---|---|---|---|---|---|---|---|
joe | joe | Math | ----- | 15 | Phys | ----- | 10 |
Judy | judy | Math | ----- | 12 | Phys | ----- | 16 |
to
firstname | lastname | subject | date | note |
---|---|---|---|---|
joe | joe | Math | ---- | 15 |
joe | joe | Phys | ---- | 10 |
Judy | Judy | Math | ---- | 12 |
Judy | Judy | Phys | ---- | 16 |
Someone knows how can I achieve this? Is there some step that could help or only through scripts?