ajBigNumSum function
Description
Returns a BigNumber whose value is the value of number1plus number2.
Syntax
ajBigNumSum(number1, number2)
Argument Name | Argument Type | Description |
---|---|---|
number1 (required) | String | A number in number or string format. For example, -1 or "-1". |
number2 (required) | String | A number in number or string format. For example, -1 or "-1". |
The function will return:
1) Return Value: BigNumber String
2) Return Type: Single Value
Example
=ajBigNumSum(2,1)
The function returns "3" as the plus result.
Error Scenarios
It will return #VALUE! when missing any required parameter or mismatch parameter type. Besides, system will raise error for below scenario(s).
Error Scenario |
---|
Number1 is neither a number or a string that can be converted to a number. |
Number2 is neither a number or a string that can be converted to a number. |