Add
Syntax
Add(number1|number2[|number3]...)
Description
Use the Add function to add a series of numbers. Decimals and negative numbers are supported.
Parameters
| Parameter | Description |
|---|---|
|
number1 |
Number to be added. |
|
number2 |
Number to be added. |
|
number3 |
(Optional) A series of additional numbers to be added. |
Returns
Sum of the numbers in the parameters.
Example
The following table presents examples of using Add.
| Expression | Result |
|---|---|
|
Add(10| -12| -3| 4| 6) |
5 |
|
Add(10.43| 10.55| -6.789| -178) |
-163.809 |