23365 - How can I enable my ID variables in UNIVARIATE to be longer than 8 characters?- Usage Note
To extend the length of the ID variables in UNIVARIATE, modify the Base.Univariate.Extobs table. Below is an example that increases the length to 15. proc template; edit base.univariate.extobs; edit LOWIDCHAR; ...
25379 - Demonstrates ODS Selective Output- Sample
Demonstrates using ODS to select specific pieces of the output
24844 - Web-enabling Your SAS Output- Sample
This sample shows how to easily create an HTML file that contains your procedure output.
5486 - PDF output generated with ODS and the DATA step may have columns with incorrect alignment- Problem Note
When a DATA step and ODS are used in conjunction to generate PDF output, values within a column may have incorrect alignment. There are two ways to generate PDF output with the DATA step, with and without the ODS option ...
12661 - FOOTNOTE text written to OUTPUT window when ODS LISTING CLOSE specified- Usage Note
When BATCH procedures such as CALENDAR, CHART, COMPARE, FORMAT, FORMS, PLOT, or TIMEPLOT are used in conjuntion with the ODS LISTING CLOSE statement, footnotes are included in the LISTING destination. The output from ...
12119 - Graphs may not appear in output created by ODS HTML- Usage Note
If a SAS procedure creates an image as part of its output, that image may appear as a red "X" in the HTML file created by code similar to the following. ods html file="directory/file.html";* SAS code * ods html ...
3482 - The ODS NOPROCTITLE statement can be use to prevent the procedure title from appearing in the output- Usage Note
The ODS NOPROCTITLE statement suppresses the procedure title in the output for procedures that produce a title. For example, most of the statistical procedures and some of the Base SAS procedures generate the title
25416 - Demonstrates Customized Table, Header, and Column- Sample
Using PROC TEMPLATE to change a TABLE and STYLE template
23660 - How can I append to an ODS HTML output file?- Usage Note
You can append information to the beginning and end of an HTML file by using the options NO_TOP_MATTER (alias NOTOP) and NO_BOTTOM_MATTER (alias NOBOT). These two options prevent ODS from writing the opening or closing ...
23669 - How can I selectively exclude output from my ODS file?- Usage Note
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 ...
23339 - Can I uppercase the procedure title in ODS output?- Usage Note
The procedure title can be uppercased or lowercased by using the Text-transform style property within the style element Proctitle. proc template; define style styles.test; parent=styles.default; style ...
The BY-group information is displayed with the label and the variable. To get rid of this information in SAS 9.1, you can modify the HTML4 tagset and use the DATA step functions to strip the equal sign from the label. ...
10824 - Specifying the RENAME= data set option with the ODS OUTPUT statement may cause errors.- Usage Note
If you create output using the ODS OUTPUT statement and specify the RENAME= data set option along with other data set options, you will receive read access violation errors. The only workaround for the problem is to ...
23677 - Why are my output data sets not getting generated by the ODS OUTPUT statement?- Usage Note
Here are some of the most likely reasons why your output data set is not generated when you use the ODS OUTPUT statement: You used the NOPRINT option on the procedure. When the NOPRINT option is used on the ...
23354 - How can I translate a value of a variable to something else by using PROC TEMPLATE?- Usage Note
Within the column definition, use the TRANSLATE statement with the _VAL_ and INTO keywords to specify a value in the data set that should be changed to a different value. Whenever the _VAL_ value is found in an ...