Swaps columns and rows.
Example

Example Input
dim_A | dim_B | metric_1 |
AAA | DDD | 111 |
BBB | EEE | 222 |
CCC | FFF | 333 |
Example Output
dim_A | AAA | BBB | CCC |
dim_B | DDD | EEE | FFF |
metric_1 | 111 | 222 | 333 |
I Ain't Afraid of No Code!
[
[
"transpose",
{
"row_limit": 500,
"subtable": null,
"_comment": null
}
]
]
param int row_limit: The number of rows to be transposed, any excess will be discarded.
param str subtable: Name a subtable in which output will be stored (will create subtable where necessary).
param str comment: A comment that will appear in the Transformation UI.
Comments
0 comments
Article is closed for comments.