Difference between revisions of "Error Messages/41125"
Line 1: | Line 1: | ||
− | + | [[Category: Error messages]] | |
− | + | == Message == | |
− | = Cause = | + | :<code>''The «rowIndex» and «colIndex» parameters to ConcatRows identify the same index. They are required to be two different indexes.''</code> |
+ | |||
+ | == 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: | 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: | ||
− | + | :<code>ConcatRows(A, J, J)</code> | |
− | = Remedy = | + | == 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: | You need to change one of the parameters to a different index identifier. Perhaps when the above was written, what was really intended was: | ||
− | + | :<code>ConcatRows(A, I, J)</code> | |
− | + | ==See Also== | |
+ | * [[Function calls and parameters]] | ||
+ | * [[Arrays and Indexes]] | ||
+ | * [[ConcatRows]] |
Latest revision as of 19:38, 11 April 2016
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
Enable comment auto-refresher