Object Reference : Object View and Procedure Reference : Table
  
 
copytable
Copies the entire table to the specified location in another table.
Syntax
table_name.copytable destname d1
table_name.copytable destname dr1 dc1
The copytable command can be specified either using coordinates where columns are signified with a letter, and rows by a number (for example “A3” represents the first column, third row), or by row number and column number.
The first syntax represents coordinate form, where destname specifies the name of the table to copy to, and d1 specifies the upper-left coordinate of the destination table.
The second syntax represents the row/column number form, where destname specifies the name of the table to copy to, and dr1 and dr2 specify the upper and left most row and column of the destination table, respectively.
Examples
table1.copytable table2 A10
copies all of the data in TABLE1 to the 1st column and 10th row of TABLE2.
table1.copytable table2 1 5
copies all of the data in TABLE1 to the 5th column and first row of TABLE2.
Cross-references
See also Table::copyrange.
For additional discussion of table commands see “Working with Tables and Spreadsheets”.
See also “Table and Text Objects” for a discussion and examples of table formatting in EViews.