-
Notifications
You must be signed in to change notification settings - Fork 2
Number calculation
This transform performs simple mathematical operations on incoming values
Parameter name | Description |
---|---|
Value | The numeric value to use in the calculation |
Operator | The operation to perform |
The transform accepts a single integer value as an input.
The transform accepts multiple input values, and processes each of them individually
The transform returns an integer for each input value
This operator combines the incoming value with the value specified in the transform
Incoming value | Value | Outbound value |
---|---|---|
100 | 2 | 102 |
This operator subtracts the value specified in the transform configuration from the value passed into the transform
Incoming value | Value | Outbound value |
---|---|---|
100 | 2 | 98 |
This operator subtracts the incoming value from the value specified in the transform configuration
Incoming value | Value | Outbound value |
---|---|---|
100 | 2 | -98 |
2 | 100 | 98 |
This operator divides the value specified in the transform configuration by the value passed into the transform
Incoming value | Value | Outbound value |
---|---|---|
2 | 10 | 5 |
This operator divides the incoming value by the value specified in the transform configuration
Incoming value | Value | Outbound value |
---|---|---|
10 | 2 | 5 |