Error Messages/41125

< Error Messages
Revision as of 19:38, 11 April 2016 by Bbecane (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)

See Also

Comments


You are not allowed to post comments.