sas 输出html 语句 ods html ;ods close;
sas 输出excel语句
ods tagsets.excelxp file="d:\test.xls" options(sheet_name="print") style=analysis;
proc print data=sashelp.class;run;
ods tagsets.excelxp options(sheet_name="freq");
proc freq data=sashelp.class;
tables sex;
run;
ods tagsets.excelxp close;
excel和HTML本身就可以相互转化