ProgressiveJL
IS-IT--Management
Hi all,
Using CR XI and trying to select records based on values in an array.
I'm getting the following error message "An array's dimension must be an integer between 1 and 1000 when I execute the following formula:
numberVar array itemtypes;
numberVar counter;
if {?VAULT_DEPOSITS} = true then
(
counter := counter + 1;
redim preserve itemtypes [counter];
itemtypes [counter] := 9
);
if {?VAULT_REBOOT} = true then
(
counter := counter + 1;
redim preserve itemtypes [counter];
itemtypes [counter] := 28
);
Any suggestions?
Using CR XI and trying to select records based on values in an array.
I'm getting the following error message "An array's dimension must be an integer between 1 and 1000 when I execute the following formula:
numberVar array itemtypes;
numberVar counter;
if {?VAULT_DEPOSITS} = true then
(
counter := counter + 1;
redim preserve itemtypes [counter];
itemtypes [counter] := 9
);
if {?VAULT_REBOOT} = true then
(
counter := counter + 1;
redim preserve itemtypes [counter];
itemtypes [counter] := 28
);
Any suggestions?