HTML - 0200

Intro to HTML - 0200

Menu Back Next
HTML Tags! - Simple SAS program to Dump your SAS Listings to an HTML Page
/************************************************************/
/*SASHTML.sas                                               */
/* Simple program to dump your SAS listings to an HTML page.*/
/************************************************************/

proc printto file="sashtml.htm" new; run; data _null_; file print noprint notitles; put " <HTML>" / " <B>" / " <PRE>" ; run; /***********************************************************/ /*** Place your SAS Reports Here ***/ /***********************************************************/ options ls=199 center date number pageno=1; proc print data=cfdata.alfaplob; run; proc print data=cfdata.aggmelb ; run; data _null_; file print noprint notitles; put / " </PRE>" / " </B>" / " </HTML>" ; run; proc printto; run;