SUBTRACT
The SUBTRACT function returns the difference of all values in the arguments.
Syntax
SUBTRACT(value1, ...valueN?) - > number
Arguments
Example
Consider the below example where we have Revenue and expenses data. The objective is to calculate the profit.
To achieve this, the following formula should be written in the [Profit] node.
SUBTRACT
(
[Revenue]
,
[Expenses]
)
Result
Last updated