1. Turn header row into a vertical list
| Student | Subject | Assignment | Score | Max Score |
=TRANSPOSE(A1:E1)Result: A five-cell column containing Student, Subject, Assignment, Score, Max Score.
The source range A1:E1 is a single horizontal row of five headers. TRANSPOSE swaps rows and columns, so the single row becomes a single column of five cells. Because the result spills downwards, each header appears in its own row, preserving the original order.