Hi,
dropping the "latsobs" option is unfortunate. It would be very handy.
I have lots of Excel-files from which I want to import lots of different pieces of information. I know upper left corner, but I don't know the number of columns or observations in each file.
Take this file as an example:
https://www.dropbox.com/s/u3rw8mwr2v37b ... .xlsx?dl=0
I need the variable-name in row 6, and the number in row 7 (for all columns). According to documentation, one of the following could work.
Code: Select all
wfopen "NOK_fixed.xlsx" range="Sheet 1!a6" colhead=1 lastobs=1
or
Code: Select all
wfopen "NOK_fixed.xlsx" range="Sheet 1!a6" colhead = 1 scan=1
pagecontract 1 1
Just writing
Code: Select all
wfopen "NOK_fixed.xlsx" range="Sheet 1!a6" colhead = 1
doesn't work because Eviews is formatting it as datenumbers and setting 2 first obs to NA.
I guess I can do it in several steps, finding number of variables (=columns), and then finding the correct "range", but it seems unnecessary complicated.
So how do I this without explicitly setting the range?
Thanks,
Dagfinn
PS! so "scan" is also not working?