Expressions in table proc arguments
Posted: Tue Nov 20, 2012 8:57 am
Many table procedures seems not be able to handle expressions as arguments. It would be very helpful to be able to specify relative column/row references rather than absolute ones. As Eviews works now, code snippet 1 needs to be rewritten as code snippet 2 in order to work.
Code snippet 1
Code snippet 2
Code snippet 1
Code: Select all
close @all
wfcreate a 1900 1901
table(1,3) mytable
!column=1
mytable.setfont(1,!column+2) +bCode: Select all
close @all
wfcreate a 1900 1901
table(1,3) mytable
!column=1
!tmpcol=!column+2
mytable.setfont(1,!tmpcol) +b