<?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 in proc report, how to not display the headers in the last summary page in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/in-proc-report-how-to-not-display-the-headers-in-the-last/m-p/64959#M18501</link>
    <description>Here is my question.&lt;BR /&gt;
&lt;BR /&gt;
I 'compute' after the rbreak/page, and list all the summary lines in one last page. But I don't want to have the report column headers shown on this page. Any suggestions?&lt;BR /&gt;
&lt;BR /&gt;
Thanks a lot,</description>
    <pubDate>Sat, 15 Aug 2009 01:20:57 GMT</pubDate>
    <dc:creator>odmhx</dc:creator>
    <dc:date>2009-08-15T01:20:57Z</dc:date>
    <item>
      <title>in proc report, how to not display the headers in the last summary page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/in-proc-report-how-to-not-display-the-headers-in-the-last/m-p/64959#M18501</link>
      <description>Here is my question.&lt;BR /&gt;
&lt;BR /&gt;
I 'compute' after the rbreak/page, and list all the summary lines in one last page. But I don't want to have the report column headers shown on this page. Any suggestions?&lt;BR /&gt;
&lt;BR /&gt;
Thanks a lot,</description>
      <pubDate>Sat, 15 Aug 2009 01:20:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/in-proc-report-how-to-not-display-the-headers-in-the-last/m-p/64959#M18501</guid>
      <dc:creator>odmhx</dc:creator>
      <dc:date>2009-08-15T01:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: in proc report, how to not display the headers in the last summary page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/in-proc-report-how-to-not-display-the-headers-in-the-last/m-p/64960#M18502</link>
      <description>Hi:&lt;BR /&gt;
  Although PROC REPORT has a NOHEADER option, it does apply to the entire report -- so you can not suppress headers only on the last page of the report. However, you could selectively use NOHEADER to put a separate PROC REPORT step at the end of your report without the headers. Something like what's shown below...there's no compute block, since this was a simple NOHEADER example.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods html file='nohead.html' style=sasweb;&lt;BR /&gt;
ods rtf file='nohead.rtf' startpage=no;&lt;BR /&gt;
                       &lt;BR /&gt;
proc report data=sashelp.class nowd;&lt;BR /&gt;
  title 'Average Height by Gender and Age';&lt;BR /&gt;
  column age sex height;&lt;BR /&gt;
  define age / group;&lt;BR /&gt;
  define sex / group;&lt;BR /&gt;
  define height / mean;&lt;BR /&gt;
run;&lt;BR /&gt;
                  &lt;BR /&gt;
proc report data=sashelp.class noheader nowd;&lt;BR /&gt;
  title 'Average Height by Gender';&lt;BR /&gt;
  column sex height;&lt;BR /&gt;
  define sex / group;&lt;BR /&gt;
  define height /mean;&lt;BR /&gt;
run;&lt;BR /&gt;
         &lt;BR /&gt;
proc report data=sashelp.class noheader nowd;&lt;BR /&gt;
  title 'Average Height by Age';&lt;BR /&gt;
  column age height;&lt;BR /&gt;
  define age / group;&lt;BR /&gt;
  define height / mean;&lt;BR /&gt;
run;&lt;BR /&gt;
               &lt;BR /&gt;
ods _all_ close; &lt;BR /&gt;
[/pre]</description>
      <pubDate>Sat, 15 Aug 2009 20:00:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/in-proc-report-how-to-not-display-the-headers-in-the-last/m-p/64960#M18502</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-08-15T20:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: in proc report, how to not display the headers in the last summary page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/in-proc-report-how-to-not-display-the-headers-in-the-last/m-p/64961#M18503</link>
      <description>Thank you so much. I forgot about this</description>
      <pubDate>Sat, 15 Aug 2009 21:41:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/in-proc-report-how-to-not-display-the-headers-in-the-last/m-p/64961#M18503</guid>
      <dc:creator>odmhx</dc:creator>
      <dc:date>2009-08-15T21:41:38Z</dc:date>
    </item>
  </channel>
</rss>

