Convenience function to convert all fields in the table using a common string.
Example
Example Input
dim_A | dim_B | metric_1 |
abc | ddd | 111 |
eEe | zzz | 222 |
aaB | ffF | 333 |
Example Output
dim_A | dim_B | metric_1 |
ABC | DDD | 111 |
EEE | ZZZ | 222 |
AAB | FFF | 333 |
I Ain't Afraid of No Code!
[
[
"convertall",
{
"failonerror": false,
"subtable": null,
"converter": "upper",
"_comment": null
}
]
]
param boolean failonerror: Default is false.
param str subtable: Name a subtable in which output will be stored (will create subtable where necessary).
param str converter: Common function to convert values.
param errorvalue: Value to use if conversion fails, default is None.
param str comment: A comment that will appear in the Transformation UI.
Comments
0 comments
Article is closed for comments.