libname orion 'S:\Courses\stat-renaes\stat404'; ********** ODS HTML **********; ods html file='myreport.html' style=Ocean; proc freq data=orion.sales; tables Country; run; ods html close; ********** ODS PDF **********; ods pdf file='myreport.pdf' style=Meadow; proc freq data=orion.sales; tables Country; run; ods pdf close; ********** ODS RTF **********; ods rtf file='myreport.rtf' style=Statistical; proc freq data=orion.sales; tables Country; run; ods rtf close; ********** Single Destination **********; ods listing close; ods html file='example.html' style=FestivalPrinter; proc freq data=orion.sales; tables Country; run; ods html close; ods listing; ********** Multiple Destinations **********; ods listing; ods pdf file='example.pdf' style=SeasidePrinter; ods rtf file='example.rtf' style=Seaside; proc freq data=orion.sales; tables Country; run; ods pdf close; ods rtf close; ********** Multiple Destinations with _ALL_ **********; ods listing; ods pdf file='example.pdf'; ods rtf file='example.rtf'; proc freq data=orion.sales; tables Country; run; ods _all_ close; ods listing; ********** Multiple Procedures **********; ods listing; ods pdf file='example.pdf' style=Money; ods rtf file='example.rtf'; proc freq data=orion.sales; tables Country; run; proc means data=orion.sales; var Salary; run; ods _all_ close; ods listing; ********** File Location **********; ods rtf file='U:\Documents\Classes\421\example.rtf' style=Science; proc freq data=orion.sales; tables Country; run; proc means data=orion.sales; var Salary; run; ods rtf close;