Hi Nic,
Appreciate your work.
Quote:
|
Originally Posted by Nicholishen
Here is a simple script to do what you are wanting.
|
I think there is 1 error in this script:
for (int i=0;i
<=PeriodsBack;i++)
must be:
for (int i=0;i
<PeriodsBack;i++)
In your example it will go 11 times through the for loop