popipipo has the right idea
The first cell in your new table would have:
Formula:
=INDEX($B$3:$E$6,MATCH($A11,$A$3:$A$6,0),MATCH(B$10,$B$2:$E$2,0))
Then just copy it across and down as needed.
Formula Logic for future use:
Index(search where,what row, what column)
Match(match what, where,[0 for exact matches])
Index(test scores,Match(student,all the students,0),Match(test#,all the test #s,0))
The absolute references "$" in the equation allow you to copy and paste the equation around while keeping the references in their place.
This pulls a test score in the row matching the students name and a column matching the given test#.
Bookmarks