Hi
I have my input data in the below format:
| Biology | Alpha C |
| Biology | Alpha F |
| Biology | Alpha I |
| Biology | Alpha L |
| Biology | Alpha O |
| Chemistry | Alpha B |
| Chemistry | Alpha E |
| Chemistry | Alpha H |
| Chemistry | Alpha K |
| Chemistry | Alpha N |
| Physics | Alpha A |
| Physics | Alpha D |
| Physics | Alpha G |
| Physics | Alpha J |
| Physics | Alpha M |
I want my column A to be transposed and reflect as column headers and reflect the list of students from column B in the below format:
| Biology | Chemistry | Physics |
| Alpha C | Alpha B | Alpha A |
| Alpha F | Alpha E | Alpha D |
| Alpha I | Alpha H | Alpha G |
| Alpha L | Alpha K | Alpha J |
| Alpha O | Alpha N | Alpha M |
You can also refer to the attached excel for the input and output data.
Thanks