<?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: Break line in ods rtf in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Break-line-in-ods-rtf/m-p/4109#M1707</link>
    <description>I got something that looks pretty good!&lt;BR /&gt;
&lt;BR /&gt;
ods rtf;&lt;BR /&gt;
proc report data=sashelp.class nowd;&lt;BR /&gt;
  *break after sex/skip;&lt;BR /&gt;
 column sex name age;&lt;BR /&gt;
 define sex  / order order=data width=3;&lt;BR /&gt;
 define name / order order=data ;&lt;BR /&gt;
 define age  / order order=data ;&lt;BR /&gt;
 compute after sex;&lt;BR /&gt;
  line @1 '      ';&lt;BR /&gt;
 endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
ods rtf close;</description>
    <pubDate>Wed, 08 Aug 2007 13:48:18 GMT</pubDate>
    <dc:creator>JuanVte</dc:creator>
    <dc:date>2007-08-08T13:48:18Z</dc:date>
    <item>
      <title>Break line in ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Break-line-in-ods-rtf/m-p/4108#M1706</link>
      <description>Hi there,&lt;BR /&gt;
&lt;BR /&gt;
When I export a table to rtf with Proc Report the sentence "break after" doesn't work. Does somebody know if it is possible solve this problem easily?&lt;BR /&gt;
&lt;BR /&gt;
Thanks!!&lt;BR /&gt;
&lt;BR /&gt;
Example:&lt;BR /&gt;
&lt;BR /&gt;
proc report data=sashelp.class nowd;&lt;BR /&gt;
  &lt;U&gt;break after&lt;/U&gt; sex/skip;&lt;BR /&gt;
 column sex name age;&lt;BR /&gt;
 define sex  / order order=data width=3;&lt;BR /&gt;
 define name / order order=data ;&lt;BR /&gt;
 define age  / order order=data ;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
   Sex  Name            Age&lt;BR /&gt;
   F    Alice            13&lt;BR /&gt;
        Barbara          13&lt;BR /&gt;
        Carol            14&lt;BR /&gt;
        Jane             12&lt;BR /&gt;
        Janet            15&lt;BR /&gt;
        Joyce            11&lt;BR /&gt;
        Judy             14&lt;BR /&gt;
        Louise           12&lt;BR /&gt;
        Mary             15&lt;BR /&gt;
. .     .      .      .       .      .     .  .....   . &amp;lt;- Blank space that I need!!&lt;BR /&gt;
   M    Henry            14&lt;BR /&gt;
        James            12&lt;BR /&gt;
        Jeffrey          13&lt;BR /&gt;
        John             12&lt;BR /&gt;
        Philip           16&lt;BR /&gt;
        Robert           12&lt;BR /&gt;
        Ronald           15&lt;BR /&gt;
        Thomas           11&lt;BR /&gt;
        William          15</description>
      <pubDate>Wed, 08 Aug 2007 13:40:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Break-line-in-ods-rtf/m-p/4108#M1706</guid>
      <dc:creator>JuanVte</dc:creator>
      <dc:date>2007-08-08T13:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Break line in ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Break-line-in-ods-rtf/m-p/4109#M1707</link>
      <description>I got something that looks pretty good!&lt;BR /&gt;
&lt;BR /&gt;
ods rtf;&lt;BR /&gt;
proc report data=sashelp.class nowd;&lt;BR /&gt;
  *break after sex/skip;&lt;BR /&gt;
 column sex name age;&lt;BR /&gt;
 define sex  / order order=data width=3;&lt;BR /&gt;
 define name / order order=data ;&lt;BR /&gt;
 define age  / order order=data ;&lt;BR /&gt;
 compute after sex;&lt;BR /&gt;
  line @1 '      ';&lt;BR /&gt;
 endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
ods rtf close;</description>
      <pubDate>Wed, 08 Aug 2007 13:48:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Break-line-in-ods-rtf/m-p/4109#M1707</guid>
      <dc:creator>JuanVte</dc:creator>
      <dc:date>2007-08-08T13:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Break line in ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Break-line-in-ods-rtf/m-p/4110#M1708</link>
      <description>Hi:&lt;BR /&gt;
  The reason for that behavior is that some PROC REPORT options were designed for the LISTING destination and they do not work well in other ODS destinations, such as RTF, PDF or HTML. This behavior is described in this Tech Support Note:&lt;BR /&gt;
&lt;A href="http://support.sas.com/techsup/unotes/SN/002/002549.html" target="_blank"&gt;http://support.sas.com/techsup/unotes/SN/002/002549.html&lt;/A&gt; and workaround samples can be found here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/topics/templateFAQ/repoption.html" target="_blank"&gt;http://support.sas.com/rnd/base/topics/templateFAQ/repoption.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 08 Aug 2007 14:08:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Break-line-in-ods-rtf/m-p/4110#M1708</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-08-08T14:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Break line in ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Break-line-in-ods-rtf/m-p/4111#M1709</link>
      <description>Thank you very much Cynthia!</description>
      <pubDate>Wed, 08 Aug 2007 14:20:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Break-line-in-ods-rtf/m-p/4111#M1709</guid>
      <dc:creator>JuanVte</dc:creator>
      <dc:date>2007-08-08T14:20:42Z</dc:date>
    </item>
  </channel>
</rss>

