Usage Note 23669: How can I selectively exclude
output from my ODS file?
You can select or exclude output objects by issuing
the ODS SELECT or ODS EXCLUDE statement. By default,
this method excludes or selects output
objects for all destinations. To select or exclude output for a certain
destination only, specify the destination on the statement.
The below
example creates an HTML file for the first, second, and fourth procedures.
ods html file='temp.html';
proc print data=sashelp.class;
run;
proc freq data=sashelp.class;
run;
ods html exclude all; /* Exclude ALL output objects from HTML destination */
proc univariate data=sashelp.class;
run;
ods html select all; /* Restore the defaults */
proc means data=sashelp.class;
run;
ods html close;
See also the full PROC TEMPLATE FAQ and Concepts.
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML Third Party ==> Output ==> PDF Third Party ==> Output ==> Postscript Third Party ==> Output ==> RTF
|
| Date Modified: | 2007-10-03 10:43:40 |
| Date Created: | 2004-02-04 10:39:57 |