<?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 no header name needed in next page of rtf file  of same table in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/no-header-name-needed-in-next-page-of-rtf-file-of-same-table/m-p/151364#M11655</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a long sas table (more than 200 obs) and I want to display the same in RTF file.&lt;/P&gt;&lt;P&gt;But I want only one time the table header name will display in the rtf file&amp;nbsp; and no header name will be there in next page(which is continuation of the same table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help to get it resolve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Oct 2014 11:20:32 GMT</pubDate>
    <dc:creator>Subhan</dc:creator>
    <dc:date>2014-10-31T11:20:32Z</dc:date>
    <item>
      <title>no header name needed in next page of rtf file  of same table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/no-header-name-needed-in-next-page-of-rtf-file-of-same-table/m-p/151364#M11655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a long sas table (more than 200 obs) and I want to display the same in RTF file.&lt;/P&gt;&lt;P&gt;But I want only one time the table header name will display in the rtf file&amp;nbsp; and no header name will be there in next page(which is continuation of the same table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help to get it resolve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Oct 2014 11:20:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/no-header-name-needed-in-next-page-of-rtf-file-of-same-table/m-p/151364#M11655</guid>
      <dc:creator>Subhan</dc:creator>
      <dc:date>2014-10-31T11:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: no header name needed in next page of rtf file  of same table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/no-header-name-needed-in-next-page-of-rtf-file-of-same-table/m-p/151365#M11656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, your request is not clear.&amp;nbsp; If you output from SAS to RTF then you get a marked up file with Titles defined once per section.&amp;nbsp; When you read that file in Word then the default operation is to apply titles throughout the document.&lt;/P&gt;&lt;P&gt;What you could do is to break up your output table and manually report each one separately e.g. proc report data=page1, proc report data=page2 etc. and you could specify a different title in between those procedures.&amp;nbsp; Each would then have its own titles. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Oct 2014 11:38:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/no-header-name-needed-in-next-page-of-rtf-file-of-same-table/m-p/151365#M11656</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-10-31T11:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: no header name needed in next page of rtf file  of same table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/no-header-name-needed-in-next-page-of-rtf-file-of-same-table/m-p/151366#M11657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make variable names be the first obs value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data class;&lt;/P&gt;&lt;P&gt;if _n_ eq 1 then do; name='name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ';sex='sex&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ';output;end;&lt;/P&gt;&lt;P&gt; set sashelp.class sashelp.class;&lt;/P&gt;&lt;P&gt; output; keep name sex;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods rtf file='x.rtf';&lt;/P&gt;&lt;P&gt;proc report data=class noheader&amp;nbsp; nowd;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods rtf close;&lt;/P&gt;&lt;P&gt;ods listing;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Oct 2014 12:10:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/no-header-name-needed-in-next-page-of-rtf-file-of-same-table/m-p/151366#M11657</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-10-31T12:10:08Z</dc:date>
    </item>
  </channel>
</rss>

