Page 1 of 1

Copy/Extract objects using pagecopy

Posted: Tue Oct 22, 2013 7:52 pm
by Vladimir_Yorrick
EViews 8 (Jun 19 build)

Hi,

I have a question on copying objects to another page (by value).

This does what I want:

Code: Select all

wfcreate(page=Page1) u 100 series x = nrnd series y = nrnd pool Panel1 al ak ar store(o) Panel1 pagecopy(bylink,page=Page2) x y fetch Panel1
But can I do it without store/fetch using something like this?

Code: Select all

wfcreate(page=Page1) u 100 series x = nrnd series y = nrnd pool Panel1 al ak ar pagecopy(bylink,page=Page2) x y pageselect Page1 pagecopy(page=Page2) Panel1
I'd like to have the objects x, y and Panel1 in the new page Page2. I can't copy series and pool objects in the same line 'pagecopy(bylink,page=Page2) x y Panel1'. Just wondering if there is a nicer way without using store/fetch.

Thank you in advance.

Re: Copy/Extract objects using pagecopy

Posted: Tue Oct 22, 2013 7:58 pm
by EViews Gareth
Use the copy command.

Re: Copy/Extract objects using pagecopy

Posted: Tue Oct 22, 2013 8:02 pm
by Vladimir_Yorrick
Great, thanks Gareth.