<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Page breaks in ODS RTF in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Page-breaks-in-ODS-RTF/m-p/3012#M1355</link>
    <description>One thing you could do for the titles is to put them in their own proc report table (using a style with the borders removed).  That way you could place them whereever you need them.  This is the approach I take for all titles and footnotes  because I keep them in a dataset.  You could also put them before and after the page in a compute block .&lt;BR /&gt;
&lt;BR /&gt;
Alternatively you could use ODS RTF TEXT= to put the titles between the tables.</description>
    <pubDate>Wed, 09 May 2007 15:03:07 GMT</pubDate>
    <dc:creator>Rose_G</dc:creator>
    <dc:date>2007-05-09T15:03:07Z</dc:date>
    <item>
      <title>Page breaks in ODS RTF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Page-breaks-in-ODS-RTF/m-p/3011#M1354</link>
      <description>Hello All,&lt;BR /&gt;
  I have a problem with page breaks when using ODS RTF. My aim is to put as many tables(Each table corresponds to each proc report in my code) as possible into a single page (of RTF destination), and then go to the next page.&lt;BR /&gt;
  Here are some of the approaches I used, but failed to implement.&lt;BR /&gt;
1. I used startpage=no option and changed to startpage=now, whenever is needed. This concept worked very fine except that, it takes a single title for the two tables(two proc reports). Meaning, it takes a single title for each page. I want two different titles for the two tables. &lt;BR /&gt;
2. I tried to use options formdlim=' '. But this seems to apply only for the output window, but not for the ODS RTF. I can see the differences in the output window, but not in RTF file. &lt;BR /&gt;
&lt;BR /&gt;
Can anyone suggest me a solution for this.&lt;BR /&gt;
&lt;BR /&gt;
Thanks in Advance,&lt;BR /&gt;
N. Hemanth Padmakar.</description>
      <pubDate>Wed, 09 May 2007 14:04:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Page-breaks-in-ODS-RTF/m-p/3011#M1354</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-05-09T14:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Page breaks in ODS RTF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Page-breaks-in-ODS-RTF/m-p/3012#M1355</link>
      <description>One thing you could do for the titles is to put them in their own proc report table (using a style with the borders removed).  That way you could place them whereever you need them.  This is the approach I take for all titles and footnotes  because I keep them in a dataset.  You could also put them before and after the page in a compute block .&lt;BR /&gt;
&lt;BR /&gt;
Alternatively you could use ODS RTF TEXT= to put the titles between the tables.</description>
      <pubDate>Wed, 09 May 2007 15:03:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Page-breaks-in-ODS-RTF/m-p/3012#M1355</guid>
      <dc:creator>Rose_G</dc:creator>
      <dc:date>2007-05-09T15:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Page breaks in ODS RTF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Page-breaks-in-ODS-RTF/m-p/3013#M1356</link>
      <description>Hi!&lt;BR /&gt;
  Until SAS 9.2, all vertical measurement is handled by the RTF viewer (Word) when it renders the RTF file created by SAS. So you can't really code hard and fast page breaks until the new "measured" RTF is available. FORMDLIM only applies to the LISTING window.&lt;BR /&gt;
  &lt;BR /&gt;
  When you use STARTPAGE=NO, the TEXT= option can be used to insert text between procedures (doesn't matter which ones). For example:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods rtf file='c:\temp\testsp.rtf' startpage=no;&lt;BR /&gt;
title 'First Proc';&lt;BR /&gt;
*** first proc code;&lt;BR /&gt;
  &lt;BR /&gt;
ods rtf text='Second Proc';&lt;BR /&gt;
*** second proc code;&lt;BR /&gt;
  &lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
The text that you write with ODS TEXT= will be initially left-justified. You can format it (center, bigger font, etc) with the techniques described here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/techsup/unotes/SN/008/008044.html" target="_blank"&gt;http://support.sas.com/techsup/unotes/SN/008/008044.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
Good luck!&lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 09 May 2007 15:10:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Page-breaks-in-ODS-RTF/m-p/3013#M1356</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-05-09T15:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: Page breaks in ODS RTF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Page-breaks-in-ODS-RTF/m-p/3014#M1357</link>
      <description>Hello,&lt;BR /&gt;
  Thanx Rose and Cynthia. ODS RTF text= solved my problem. I didn't know this.&lt;BR /&gt;
Thanx a lot.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Hemanth Padmakar.</description>
      <pubDate>Thu, 10 May 2007 03:14:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Page-breaks-in-ODS-RTF/m-p/3014#M1357</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-05-10T03:14:53Z</dc:date>
    </item>
  </channel>
</rss>

