Error Messages/41125
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 )
Comments
<comments />
Enable comment auto-refresher