...
Expand | ||
---|---|---|
| ||
A function may take zero, one or more arguments. Some functions can take an unlimited number of arguments. Parameter TypesFunctions expect certain value types for each parameter. When an unexpected type is provided, Structure will attempt to convert it to an acceptable type. If it can't, the function may consider the value undefined and ignore the value, or it may return an error. For example, the MIN function is used to select the smallest number from a series; if the text value "10" is passed as of the parameters, it will convert that to the number 10. If "ABC" is passed, it won't be able to convert that to a number and will return an error. For more information about how Structure converts values, see Value Conversions. Undefined ValuesA variable used in a formula may have ArraysMany functions can also be applied to arrays. When the argument is an array, it will be treated in one of the following ways:
|
...