Error Messages/40638
Error message examples
In call to function MakeUpperCaps, the first parameter, «str», should be a text value, but the array passed to this parameter contains a non-text value at coordinate: ArrayOfText = 417.
Cause
You passed an array with a non text value to a functions that expects the parameter to be a text value or an array of text values. Function parameters that have been qualified by the 'text' qualifier expects a text value or an array of text value, and produces this error on passing a non text value.
The following function expects the first parameter, str, to be a text value and throws this error when an array with a non text value is passed to it.
Function MakeUpperCaps(str: text)
To learn more about function parameter qualifier, please click here.
Remedies
Correct the value of array passed to the function at the specified coordinate to be a text.
See Also
Comments
Enable comment auto-refresher