Looping an equitation with different variables
Posted: Wed May 29, 2019 10:25 am
I'd like to create a number of series from the same equation with a number of different independent variables. For example y=0.5*x, but where I change what x is a number of times. I'm not quite getting the loop right. I tried:l
But I get a syntax error...
Any ideas?
Thanks
Code: Select all
for %var {%var_list}
%v1="firstvariable"
%v2="secondvariable"
series {%var}forecast = 0.5*{%var}
next Any ideas?
Thanks