Greetings,
The following formula is retrieving the error message:
A subscript must be between 1 and the size of the array.
Formula:
Why is this happening?!?
Thanks
The following formula is retrieving the error message:
A subscript must be between 1 and the size of the array.
Formula:
Code:
Global stringvar Array Test;
Local numbervar i:=1;
For i:=1 to 7
Do
(
Test[i]:= "Test"+Totext(i);
i:=i+1;
);
Test[3];
Why is this happening?!?
Thanks