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 'text' 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 array passed to the function at the specified coordinate.





You are not allowed to post comments.

Comments
<comments />