Ok, I have an array named AffArray(1 to 3). Its value is:
AffArray(1) = "rst!Affiliated_Number_1"
AffArray(2) = "rst!Affiliated_Number_2"
AffArray(3) = "rst!Affiliated_Number_3"

I have a loop set up with a counter variable, and I am trying to set something equal to the value of AffArray as controlled by the counter variable.
exe: loopvar = 2
AffArray(loopvar) = *sum-stuff*
would be trying to set rst!Affiliated_Number_2 equal to *sum-stuff*

However, when I try that, it just resets the string value of AffArray(loopvar) to whatever *sum-stuff* is.
How do I get it to change Affiliated_Number_2?

Brandon