Copy/Extract objects using pagecopy
Posted: Tue Oct 22, 2013 7:52 pm
EViews 8 (Jun 19 build)
Hi,
I have a question on copying objects to another page (by value).
This does what I want:
But can I do it without store/fetch using something like this?
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.
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 Panel1Code: 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
Thank you in advance.