Page 1 of 1

copy all objects - resid and c issue

Posted: Fri Nov 20, 2015 4:37 am
by loulouviews
Hi,

I want to copy all data from a workfile in my current directory to my current wf.
I'm doing :

Code: Select all

copy myWf.wf1::Q\* Q\
I got a pop-up window because EViews is trying to copy "c" and "resid" with exist by default in my current wf.
How can I tell EViews not to copy "c" and "resid" ? (A loop with all variables names is not an option. :) )
I'd be grateful of any help !

Loulouviews

PS : I'm using EViews 9 Enterprise

Re: copy all objects - resid and c issue

Posted: Fri Nov 20, 2015 4:41 am
by loulouviews
I finally did

Code: Select all

copy myWf.wf1::Q\* Q\*_n delete c_n resid_n rename *_n *
which works well.