I use Eviews 13 Oct 2022 build.
The code below creates an unexpected outcome: table rows are shifted downwards in Excel when saving the table to an excel xlsx file.
With the code below, the two cell filled with "C1" are shifted downwards, starting only in the third row of the Excel sheet.
Code: Select all
wfcreate u 1 1
table tab
tab(1,1)="C1"
tab(2,1)="C1"
tab.save(t=excelxml) tab
' Entries start only in row three in the excel sheet
