Negate Boolean
Description
This activity converts the true values to its negate form.
Input
Data only
Output
Transformed data
Configuration Fields
- Columns Columns (multi-select) to transform.
- Include original
- When enabled Includes the input data with the transformed column.
- When disabled Includes only the transformed column .
Sample Input
product_name | price | in_stock |
---|---|---|
Laptop | 500 | True |
Camera | 350 | False |
Tablet | 250 | True |
Sample Configuration
Sample Output
product_name | price | in_stock | in_stock_negated |
---|---|---|---|
Laptop | 500 | True | False |
Camera | 350 | False | True |
Tablet | 250 | True | False |