| Date | Title | Type | ||
|---|---|---|---|---|
| 10/16/07 |
23365 - How can I enable my ID variables in UNIVARIATE to be longer than 8 characters? 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; ... http://support.sas.com/kb/23/365.html, 16KB |
Usage Note | ||
| 8/10/05 |
25379 - Demonstrates ODS Selective Output Demonstrates using ODS to select specific pieces of the output http://support.sas.com/kb/25/379.html, 20KB |
Sample | ||
| 2/3/05 |
24844 - Web-enabling Your SAS Output This sample shows how to easily create an HTML file that contains your procedure output. http://support.sas.com/kb/24/844.html, 18KB |
Sample | ||
| 8/3/04 |
5486 - PDF output generated with ODS and the DATA step may have columns with incorrect alignment 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 ... http://support.sas.com/kb/5/486.html, 20KB |
Problem Note | ||
| 7/7/04 |
12661 - FOOTNOTE text written to OUTPUT window when ODS LISTING CLOSE specified 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 ... http://support.sas.com/kb/12/661.html, 19KB |
Usage Note | ||
| 5/10/04 |
12119 - Graphs may not appear in output created by ODS HTML 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 ... http://support.sas.com/kb/12/119.html, 19KB |
Usage Note | ||
| 8/12/05 |
25416 - Demonstrates Customized Table, Header, and Column Using PROC TEMPLATE to change a TABLE and STYLE template http://support.sas.com/kb/25/416.html, 29KB |
Sample | ||
| 7/21/05 |
23660 - How can I append to an ODS HTML output file? 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 ... http://support.sas.com/kb/23/660.html, 22KB |
Usage Note | ||
| 10/3/07 |
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 ... http://support.sas.com/kb/23/669.html, 18KB |
Usage Note | ||
| 10/3/07 |
23339 - Can I uppercase the procedure title in ODS output? 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 ... http://support.sas.com/kb/23/339.html, 17KB |
Usage Note | ||