ConradLouw
Programmer
I need to use 11 Lag statements to reference up to 12 lines back. I'm unable to do it in a 'do' list and have to phisically type in...
Lag1
Lag2 up to
...
Lag11.
Is there a way that I can do something like
do i = 1 to 11;
lag(i)(...) = ...
instead of writing each lag part (lag1=... lag2=... lag11=)individually?
Lag1
Lag2 up to
...
Lag11.
Is there a way that I can do something like
do i = 1 to 11;
lag(i)(...) = ...
instead of writing each lag part (lag1=... lag2=... lag11=)individually?