Lets say I have a table and I want it flipped across the diagonal. So instead of X by Y its Y by X...
Before:
A B C
RED 1 2 3
BLUE 4 5 6
Becomes:
RED BLUE
A 1 4
B 2 5
C 3 6
Is there an easy, built-in way to do this?
