Hi:
Are you by any chance still running SAS 8? There used to be a problem with the ODS HTML tags that were written that generated some extra blank lines at the top of your HTML file (these blank lines are ignored in the browser, but not in Excel), but I thought that had been fixed in SAS 9.
At any rate, you can try these other methods of creating "plain" HTML files that Excel can open:
[pre]
options nodate nonumber;
title;
ods chtml file='c:\temp\cht.xls';
ods html4 file='c:\temp\ht4.xls' style=minimal;
ods htmlcss file='c:\temp\htcs.xls' style=minimal;
proc print data=sashelp.class;
run;
ods _all_ close;
[/pre]
Note that the CHTML method of creating HTML files does not need a STYLE= option because the "compact" HTML that is generated does not contain any style information.
cynthia