Log - Built-in Arithmetic Function¶
Purpose¶
Log returns the natural logarithm of a number.
Syntax¶
Log(num)
Arguments¶
| Argument | Required | Description |
|---|---|---|
num |
Yes | Any numeric expression greater than 0 |
Returns¶
Number
Example¶
Return Log(86) // returns 4.45 (when the field has a 2 decimal format)
Notes¶
- When
numcannot be converted to a number, a runtime error is generated.