Error Messages/40318
< Error Messages
Revision as of 19:36, 27 January 2010 by AManandhar (talk | contribs) (Created page with '= Error Message Examples = Error encountered in the parameter declaration for Function CovertToText while checking: (X: coerce) In the declaration for parameter X, you must …')
Error Message Examples
Error encountered in the parameter declaration for Function CovertToText while checking: (X: coerce) In the declaration for parameter X, you must specify a datatype when you use COERCE.
Cause
The coerce parameter qualifier tries to force the passed parameter to be the specified type. You did not specify any type with coerce which is not allowed.
Coerce supports the following converstions
From |
To |
Result |
Null |
Text |
"Null" |
Number |
Text |
Number as text, using the number format of the variable or function calling the function. |
Text |
Number or Positive |
If possible, interprets it as a date or number, using the number format. |
Null |
Reference |
\Null |
Number |
Reference |
\X |
Text |
Reference |
\Text |
Remedies
Correct the second parameter to be a subset of the Constraint index.
Comments
<comments />
Enable comment auto-refresher