How to Transpose the Report?
We recommend manually transposing the report after it is generated for a better experience. Please follow the below instruction on Transposing.
Transposes the rows and columns of an array or range of cells.
Sample Usage:
TRANSPOSE({1,2;3,4;5,6})
TRANSPOSE(A2:F9)
Syntax:
TRANSPOSE(array_or_range)
array_or_range - The array or range whose rows and columns will be swapped.
Note: Transposition works by converting the value in the "nth" row and "mth" column into the value in the "mth" row and "nth" column.
The value from the fourth row and second column will be assigned to the second row and fourth column. Transposing a range of m rows by n columns yields n rows by m columns.
Examples: