Name |
Syntax |
Description |
---|---|---|
| | Selects and returns a value from a list of arguments. Note that the first argument is addressed with the number "1", not with "0". |
| |
Returns one of two values, depending on the evaluation of the condition. All arguments are evaluated prior to returning a value. |
| |
Returns one of two values, depending on the evaluation of the condition. Depending on the result of the condition, only the THEN-VALUE or only the ELSE-VALUE is evaluated. Compared to the iif function, this evaluation is potentially faster. Also, it can be useful to avoid a Null Reference.
|