Usage Note 23470: How can I make the column headers repeat on each page when an ODS HTML document is printed?
Use the THEAD class
selector with the property and value DISPLAY:TABLE-HEADER-GROUP.
You can add this HTML code by using the HEADTEXT= option. Below is sample code.
data one;
do i=1 to 300;
output;
end;
run;
ods html file='temp.html'
headtext='<style>thead {display:table-header-group} </style>';
proc print data=one;
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: | System Administration ==> Printing SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML
|
| Date Modified: | 2003-12-23 16:12:10 |
| Date Created: | 2003-10-08 12:10:02 |