« comp.soft-sys.sas SAS newsgroup | Main | SAS Proc Tabulate FAQ »

SAS ODS introduction

Use SAS to generate nice looking statistical report documents.

Excel (XLS) file

ods html file = "c:\temp\data.xls";

proc print data =new;run;
ods html close;

Web(HTML) file

ods html file = "body.html";

proc print data =new;run;
ods html close;

More at SAS ODS intro [PDF]

Post a comment

(If you haven't left a comment here before, you may need to be approved by the site owner before your comment will appear. Until then, it won't appear on the entry. Thanks for waiting.)