See the list of operators you can use with your workflows below.
Operator | Description |
+ (Add) | Calculates the sum of two values
Use: value1 + value2 and replaces each value with field reference, expressions, or other numeric values.
Example: ${Object.ProductPrice + Object.ServiceFee} to calculate sum of a product price and a service fee.
|
- (Subtract) | Calculates the deference of two values
Use: value1 - value2 and replaces each value with field reference, expressions, or other numeric values.
Example: ${Object.ListPrice - Object.Discount} to calculate a difference of product list price and a discount amount. |
* (Multiply) | Multiplies its values
Use: value1 * value2 and replaces each value with field reference, expressions, or other numeric values.
Example: ${Object.ListPrice * Object.Quantity} to calculate the total amount by multiplying a product list price with a product quantity.
|
/ (Divide) | Divides its values
Use: value1 / value2 and replaces each value with field reference, expressions, or other numeric values.
Example: ${Object.TotalSalesPrice / Object.Quantity} to calculate the product sales price per unit |
Last modified on Jan 23, 2018