Is there a better way of adding a column on the right side of an array than this?
PUBLIC ARRAY gaDave(2,2)
nRows = 2
nCols = 3
DIMENSION gaDave(nRows * nCols)
nElements = ALEN(gaDave)
FOR nCnt = 1 TO nElements
IF MOD(nCnt, nCols) = 0 AND nCnt < nElements
=AINS(gaDave, nCnt)
ENDIF
ENDFOR...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.