Page 1 of 1

Assigning Table Values

Posted: Mon Aug 23, 2010 8:26 am
by w_nawfal
Hello All

Is there a way of assigning table values by referencing various series already in a workfile?

i.e.

table mytab
mytab(1,1) = NAME OF SERIES#1 (& which row to take the data from i guess)
mytab(2,1) = NAME OF SERIES#2 (& which row to take the data from i guess)
etc.

or does every piece of data in a table have to be entered in manually as either a string or numerical value?

Thanks

Wes

Re: Assigning Table Values

Posted: Mon Aug 23, 2010 9:14 am
by EViews Gareth

Code: Select all

mytab(1,1) = X(10)
Will put the 10th value of the series X into the table.

Re: Assigning Table Values

Posted: Mon Aug 23, 2010 10:15 am
by w_nawfal
thanks much!

Wes