I was wondering if anyone could help me with the following problem. I have a matrix in a sheet like that:
__ 1w | 2w | .. | 25w
a | 5,6 | 4,5 | .. | 12
b | 2,4 | 11,2 | .. | 34,45
: | ::: | ::: | :: | ::
z | 3,3 | 1,5 | .. | 24,91
I would like to transpose the rows and columns in a special way so they remained as follows on a new sheet:
1w | a | 5,6
2w | a | 4,5
.. | . | ...
25w | a | 12
1w | b | 2,4
2w | b | 11,2
.. | . | ...
25w | b | 34,45
.. | . | ...
.. | . | ...
1w | z | 3,3
2w | z | 1,5
.. | . | ...
25w | z | 24,91
I can do this by hand, but it will take a very long time because i have a lot of data. Is there anyway to automate it?