Usage Note 23338: How can I remove the procedure title from my ODS output?
The procedure title ("The Means Procedure") can be removed beginning in Release 8.1 by using the
ODS NOPROCTITLE statement. This is supported in all
destinations including the listing.
Prior to Release 8.1, remove the procedure title
from PROC FREQ by
using the undocumented NOHEADER option on the PROC FREQ statement.
Prior to 8.1, remove the title from the HTML destination by
using the PRETEXT= and POSTTEXT=
attributes. (See the example code below.)
proc template;
define style styles.test;
parent=styles.default;
style Proctitle from proctitle /
pretext="<!--"
posttext="-->";
end;
run;
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:46:15 |
| Date Created: | 2003-08-07 16:51:36 |