ComputerNurse
MIS
I am working with CR8.5 and reporting off of a SQL 2000 DB. I created this array to store weights. I am unable to access the contents of the array from another formula.
Numbervar array wtarray;
global Numbervar counter;
counter := counter + 1;
if counter <=1000
then (redim preserve wtarray[counter];
wtarray[counter]:={MR.CurrentWeight});
I tried access the value by entering wtarray[3] in another formula and was unsuccessul. Can anyone offer guidance on how to reference the values of an array outside of the formula in which it was defined?
Numbervar array wtarray;
global Numbervar counter;
counter := counter + 1;
if counter <=1000
then (redim preserve wtarray[counter];
wtarray[counter]:={MR.CurrentWeight});
I tried access the value by entering wtarray[3] in another formula and was unsuccessul. Can anyone offer guidance on how to reference the values of an array outside of the formula in which it was defined?