Sample 40327: How to eliminate the "(Continued)" text when generating a report using ODS TAGSETS.RTF
ODS TAGSETS.RTF writes the text string:(Continued) in the bottom left corner of the physical page when a report continues to the next page.
To remove the (Continued) text in SAS 9.2, an updated tagset is available via PROC TEMPLATE in the Downloads tab. Once the tagset is updated, the following syntax is used:
ods tagsets.rtf file="nocontinued.rtf" options(continue_tag="no");
The sample code on the Full Code provides the updated PROC TEMPLATE code. In SAS 9.3 no modification to the tagset is needed, because the RTF tagset provides this option by default.
These sample files and code examples are provided by SAS Institute
Inc. "as is" without warranty of any kind, either express or implied, including
but not limited to the implied warranties of merchantability and fitness for a
particular purpose. Recipients acknowledge and agree that SAS Institute shall
not be liable for any damages whatsoever arising out of their use of this material.
In addition, SAS Institute will provide no support for the materials contained herein.
ODS TAGSETS.RTF writes the value of
(Continued) at the left bottom corner of the page when rows continue to the next page. The PROC TEMPLATE code available on the Downloads tab provides an updated tagset with a way to remove this text. Save the .TPL file to a directory accessible to your SAS session. Use this directory in the FILENAME statement.
ods path (prepend) work.template(update);
filename test "<your directory>\rtf_nocontinued.tpl";
%include test / nosource2;
ods tagsets.rtf file="nocontinued.rtf" options(continue_tag="no");
proc report nowd data=sashelp.cars;
col origin make model;
define origin / order;
run;
ods tagsets.rtf close;
These sample files and code examples are provided by SAS Institute
Inc. "as is" without warranty of any kind, either express or implied, including
but not limited to the implied warranties of merchantability and fitness for a
particular purpose. Recipients acknowledge and agree that SAS Institute shall
not be liable for any damages whatsoever arising out of their use of this material.
In addition, SAS Institute will provide no support for the materials contained herein.
This sample illustrates how to eliminate the "(Continued)" text when generating a report using ODS TAGSETS.RTF.
| Type: | Sample |
| Topic: | SAS Reference ==> Procedures ==> REPORT
|
| Date Modified: | 2011-10-21 09:31:17 |
| Date Created: | 2010-07-13 12:29:37 |
Operating System and Release Information
| SAS System | Base SAS | Windows 7 Home Premium x64 | | |
| Windows 7 Home Premium 32 bit | | |
| Microsoft Windows Server 2008 for x64 | | |
| Microsoft Windows XP Professional | | |
| Windows 7 Enterprise 32 bit | | |
| Windows 7 Enterprise x64 | | |
| Microsoft Windows Server 2008 | | |
| Microsoft Windows Server 2003 for x64 | | |
| Microsoft Windows Server 2003 Standard Edition | | |
| Microsoft Windows Server 2003 Enterprise Edition | | |
| Microsoft Windows Server 2003 Datacenter Edition | | |
| Microsoft Windows NT Workstation | | |
| Microsoft Windows 2000 Professional | | |
| Microsoft Windows 2000 Server | | |
| Microsoft Windows 2000 Datacenter Server | | |
| Microsoft Windows 2000 Advanced Server | | |
| Microsoft Windows 95/98 | | |
| OS/2 | | |
| Microsoft® Windows® for x64 | | |
| Microsoft Windows XP 64-bit Edition | | |
| Microsoft Windows Server 2003 Enterprise 64-bit Edition | | |
| Microsoft Windows Server 2003 Datacenter 64-bit Edition | | |
| Microsoft® Windows® for 64-Bit Itanium-based Systems | | |
| OpenVMS VAX | | |
| z/OS | | |
| Windows 7 Professional 32 bit | | |
| Windows 7 Professional x64 | | |
| Windows 7 Ultimate 32 bit | | |
| Windows 7 Ultimate x64 | | |
| Windows Millennium Edition (Me) | | |
| Windows Vista | | |
| Windows Vista for x64 | | |
| 64-bit Enabled AIX | | |
| 64-bit Enabled HP-UX | | |
| 64-bit Enabled Solaris | | |
| ABI+ for Intel Architecture | | |
| AIX | | |
| HP-UX | | |
| HP-UX IPF | | |
| IRIX | | |
| Linux | | |
| Linux for x64 | | |
| Linux on Itanium | | |
| OpenVMS Alpha | | |
| OpenVMS on HP Integrity | | |
| Solaris | | |
| Solaris for x64 | | |
| Tru64 UNIX | | |