Removes list of fields from current table.
Example
Example Input
dim_A | dim_B | metric_1 | metric_2 | metric_3 |
AAA | DDD | 111 | 444 | 777 |
BBB | EEE | 222 | 555 | 888 |
CCC | FFF | 333 | 666 | 999 |
Example Output
dim_B | metric_2 | metric_3 |
DDD | 444 | 777 |
EEE | 555 | 888 |
FFF | 666 | 999 |
I Ain't Afraid of No Code!
[
[
"cutout",
{
"subtable": null,
"fields": [
"dim_A",
"metric_1"
],
"_comment": null
}
]
]
param str subtable: Name a subtable in which output will be stored (will create subtable where necessary).
param list fields: List of field names to be removed.
param str comment: A comment that will appear in the Transformation UI.
Comments
0 comments
Article is closed for comments.