NEVAL() Function - BBj
For this topic's original documentation, see the NEVAL()
Function - Evaluate Numeric Expression.
BBj-Specific Information
Syntax
NEVAL(str{,num} {,ERR=lineref})
The optional num argument is a default value to be returned in the event of an error evaluating the expression.
Example
DIV=NEVAL("1/0")
!ERROR=40 (Divide by 0)
DIV=NEVAL("1/0",0)