Error Messages/42352
< Error Messages
Revision as of 17:59, 22 March 2010 by Lchrisman (talk | contribs) (Created page with '= Error Text = :The parameters of Function ''Table'' cannot be identified by name when using Function ParsedExprParameter. = Cause = There are a couple built-in Analyt…')
Error Text
- The parameters of Function Table cannot be identified by name when using Function ParsedExprParameter.
Cause
There are a couple built-in Analytica functions that do not support the named-parameter syntax. One example is the Table function. These functions have no internal names stored for each parameter, so you can't call these using a syntax such as:
Table(I:Part)
The error you are seeing here occurs when you try to obtain the parameter passed to such a function using ParsedExprParameter.
Remedy
For the handful of functions that do not support the named-parameter syntax, you must access the parsed parameters by position, by specifying a number as the second parameter to ParsedExprParameter.
Comments
Enable comment auto-refresher