Page 1 of 1

X11 naming Help

Posted: Wed Mar 14, 2012 1:52 am
by yusimon
i got a program like this

Code: Select all

x11(multiplicative) ser01 series ser01sf = ser01 / ser01sa
after running this program, i got two sheets which has been auto named to: "ser01sa" and "ser01sf".

yet, i want the result to be like "sa01" and "sf01".
is there an option i can set? or a program command?

Thank you so much!

Re: X11 naming Help

Posted: Wed Mar 14, 2012 7:48 am
by EViews Gareth
Well the obvious place to start is rather than having:

Code: Select all

series ser01sf = ser01 / ser01sa
Why not just have:

Code: Select all

series sf01 = ser01 / ser01sa

Then you can add:

Code: Select all

rename ser01sa sa01

Re: X11 naming Help

Posted: Thu Mar 15, 2012 5:16 am
by yusimon
Thank you so much! EViews Gareth