Storing Links to ODS Output
When you run a procedure that supports ODS, SAS automatically
stores a link to each piece of ODS output in the Results folder in
the Results window. It marks the link with
an icon that identifies the output destination that created the output.
In the following example,
SAS executes the UNIVARIATE, TABULATE, and SGPANEL procedures and
generates HTML, PowerPoint, and Rich Text Format (RTF) output.
options nodate nonumber; proc sort data=sashelp.prdsale out=prdsale; by Country; run;ods html file='SalesFig–body.htm'
contents='SalesFig–contents.htm'
page='SalesFig–page.htm'
frame='SalesFig–frame.htm';
ods rtf file='odsrtf_output.rtf';
ods powerpoint file='odspp_output.ppt'
;proc tabulate data=prdsale;
class region division ...
Get Step-by-Step Programming with Base SAS 9.4 now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.