Hi i have about 2000 variable rows like
a1r=value
a2r=value
a3r=value
and there are also 2000 instances that is the variables have to put.
with a “for loop” i want to transfer those 2000 variables to 2000 instances. how can i do that?
for example
for(i=1;i<2000;i++){
sXr=aXr;
};
how can i assign the “i” value for X in here ?