I'm having trouble with the following code
Like to fill the array.
for(i=5;i<51;i++)
{
AvgSum = Sum(C,i)/i;
ry= Ref(AvgSum ,-1);
slope[i] = (AvgSum - ry)/C *100;
}The following error occurs Error 8. Type mismatch, the value assigned to the array element has to be a number. You can not use array on the right-side of this assignment. Is there another way of doing this? Thnx
