Error Messages/40636
Error Message Examples
In call to function Cube, the first parameter, num, should be numeric, but the array passed to this parameter contains a non-numeric value at the following coordinate: DoCube='seventeen'
Cause
You passed an array with a non numeric value to a functions that expects the parameter to be numeric or an array of numeric values. Function parameters that have been qualified by the 'numeric' qualifier expects a numeric value or an array of numeric values, and produces this error on passing a non numeric value.
The following function expects the first parameter, num, to be a number and throws this error when an array with a non numeric value is passed to it.
Function Cube( num: numeric)
To learn more about function parameter qualifiers, please click here.
Remedies
Correct the value in the array passed to the function at the specified coordinate to be numeric.
Comments
<comments />
Enable comment auto-refresher