Page 1 of 1

To copy a table from one workfile to another

Posted: Sun Feb 24, 2013 11:25 am
by alps
Hello,
Is there a way of copying a table from one work file to another? I have tried, it doesn't accept. Do I need to specificy something else?
I kept getting error messages for the following command. When I replaced it with a series it works, however.

copy aus::casual_aus tabs::tabs\

Thanks very much for your reply

Re: To copy a table from one workfile to another

Posted: Sun Feb 24, 2013 7:33 pm
by EViews Gareth
Put the page name in the source:

Code: Select all

wfcreate(wf=wf1,page=pagea) u 100 series b=nrnd table a a(1,1) = "Hello" wfcreate(wf=wf2,page=pageb) m 1990 2000 copy wf1::pagea\a wf2::* copy wf1::pagea\b wf2::* [\code]