If you want to maintain a "dynamic" link between your source and target data, so whenever your source data changes, your target also does it automatically, you need formulas.
In that case, you can use Item 7 from Excel: Formulas for converting data among column / row / matrix :
To get in matrix_data3
the transpose of matrix_data2
, one only needs to use matrix_data2_top_left
and matrix_data3_top_left
, with the formula
=OFFSET(matrix_data2_top_left,COLUMN()-COLUMN(matrix_data3_top_left),ROW()-ROW(matrix_data3_top_left))
and copied to a suitable target range.
Note that matrix_data2_top_left
and matrix_data3_top_left
are convenient Excel range names for the upper left cells of the source and target ranges, respectively, and they can be replaced in the formula by their absolute references (e.g., $B$1
and $B$6
).
Also, matrix_data2
and matrix_data3
are Excel range names, but these ranges (either as names or absolute references) are not needed here.