SUPPORT / SAMPLES & SAS NOTES
 

Support

Usage Note 15727: Writing "PAGE X of Y" in ODS RTF does not work with the BODYTITLE option

DetailsAboutRate It

Raw RTF code or the inline style function PAGEOF can be used in a TITLE or FOOTNOTE statement to write "PAGE X of Y" text in RTF output. However, if the BODYTITLE option is also used in the ODS RTF statement, the PAGEOF information is not written as expected.

This is the intended behavior. The PAGEOF information is designed to be written in the header or footer areas of a document. The BODYTITLE option removes the TITLE/FOOTNOTE from the header/footer section of an RTF file.

If the desired location of the page numbering is in the header or footer section of the RTF file, then the BODYTITLE option must be removed or Microsoft Word must be used to set the page numbering format.

An alternative is to use the TEMPLATE procedure to write "Page X of Y", which places the PAGEOF information in the upper right corner of each page. The code below applies to the default page number location only, and requires the NUMBER option to be in effect.

ods escapechar='^';

proc template;
   define style styles.test;
   parent=styles.rtf;
      style pageno from pageno /
         font=fonts("strongfont")
         posttext=" of ^{lastpage} ";
   end;
run;

options number;
ods listing close;
ods rtf file='test.rtf' style=styles.test;

proc print data=sashelp.class noobs;
run;

ods rtf close;
ods listing;


Operating System and Release Information

Product FamilyProductSystemSAS Release
ReportedFixed*
SAS SystemBase SASMicrosoft Windows NT Workstation9.1 TS1M0
Microsoft Windows XP Professional9.1 TS1M0
Microsoft Windows Server 2003 Standard Edition9.1 TS1M0
Microsoft® Windows® for 64-Bit Itanium-based Systems9.1 TS1M0
Microsoft Windows Server 2003 Enterprise Edition9.1 TS1M0
Microsoft Windows 2000 Professional9.1 TS1M0
Microsoft Windows 2000 Server9.1 TS1M0
Microsoft Windows Server 2003 Datacenter Edition9.1 TS1M0
Microsoft Windows 2000 Advanced Server9.1 TS1M0
Microsoft Windows 2000 Datacenter Server9.1 TS1M0
64-bit Enabled Solaris9.1 TS1M0
z/OS9.1 TS1M0
Linux9.1 TS1M0
HP-UX IPF9.1 TS1M0
64-bit Enabled HP-UX9.1 TS1M0
OpenVMS Alpha9.1 TS1M0
64-bit Enabled AIX9.1 TS1M0
Tru64 UNIX9.1 TS1M0
* 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.