Hi KSharp,
I also ran your code and got an empty table. Looking at the log, it seems that it actually shows the html text. I can actually get the html with the following code:
data download; length view $32767; filename the_vid url "http://ca.finance.yahoo.com/q/is?s=MNKD&annual"; infile the_vid lrecl=32767; input; view = _infile_; run;
The income statement info is actually present in the table "download", but its a mess to get it out...
That's why I thought if it were possible to get the income statement table in table form, just like it is possible to get the daily price in table form. But on the other hand, the daily price is actually a csv file, whereas the income statement it raw html.
Thank you!
... View more