Error Messages/40914
Error Message
- The «concatIndex» passed to SysFunction ConcatRows if the wrong length. A length of 25 was expected, but the index provided has a length of 20.
Cause
When you call ConcatRows(A,I,J,K), providing the third index parameter, «K», the length of «K» must be equal to the product of the length of «I» and the length of «J».
Remedies
First, make sure that you are using the indexes that you intended.
You could omit the «K» parameter and let ConcatRows create the result index for you. Or you can redefine K as: Sum(1,I,J), which would guarantee it to be the correct length.
Comments
<comments />
Enable comment auto-refresher