Error Messages/41125

< Error Messages
Revision as of 03:24, 25 June 2009 by Lchrisman (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Message

The rowIndex and colIndex parameters to ConcatRows identify the same index.  They are required to be two different indexes.

Cause

The array passed as the first parameter to ConcatRows must have at least 2 dimensions, which you specify in the second and third parameters (the «rowIndex» and «colIndex» parameters). You have specified the same index for both, such as in the following:

ConcatRows( A, J, J )

Remedy

You need to change one of the parameters to a different index identifier. Perhaps when the above was written, what was really intended was:

ConcatRows( A, I, J )


You are not allowed to post comments.

Comments
<comments />