我正在尝试使用ODS HTML将SAS表导出到本地HTML文件。 我该怎么办?
data=WORK.TABLE_NAME;
ods html file="/user_data/maexport/monitoring t-1.html";
ods html close;
上面的代码保存html文件,但为空。
答案 0 :(得分:2)
该文件为空,因为在打开该文件的命令与关闭该命令的命令之间,您没有运行任何可能向该文件写入内容的代码。
ods html file="/user_data/maexport/monitoring t-1.html";
proc print data=WORK.TABLE_NAME;
run;
ods html close;