Skip to main content
Applies the operator on the incoming value together with one or more values you set up in advance. You pick an operator, such as add, multiply, or concatenate, then provide fixed values to place before (Left) and after (Right) the incoming value. The operator runs across the whole set in order: the prepared left values, the incoming value, then the prepared right values. This is handy when you always apply the same fixed adjustment to a value, such as multiplying every net price by a VAT factor, or wrapping a code between a fixed prefix and suffix.

Fields

Sample data

FieldValue
OperatorMath: Multiply
Left(empty)
Right1.21
The net price is multiplied by the fixed VAT factor 1.21 to give the gross price (100 × 1.21): Input:
{ "netPrice": 100 }
Output:
{ "netPrice": 121 }