Usage Note 24043: How to reset page numbers in the ODS RTF and ODS PDF destinations
In the ODS RTF and ODS PDF destinations, the PAGENO system option can be used to control the page number. The sample code on the Full Code tab shows an example.
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.
In the ODS RTF and ODS PDF destinations, the PAGENO system option can be used to control the page number.
options number nodate;
ods pdf file="file.pdf" notoc;
ods rtf file="file.rtf";
proc print data=sashelp.class noobs;
run;
/* Start the page numbering from 1 */
options pageno=1;
proc print data=sashelp.cars(obs=100) noobs;
var make model type cylinders;
run;
ods _all_ close;
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> RTF
|
| Date Modified: | 2004-07-01 15:05:38 |
| Date Created: | 2004-06-28 12:50:16 |