<?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: Proc report page option in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37697#M7495</link>
    <description>There is a option for proc report.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
proc report data=sas.help nowd panels=3 ;&lt;BR /&gt;
...........&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp</description>
    <pubDate>Sun, 27 Jun 2010 05:56:58 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2010-06-27T05:56:58Z</dc:date>
    <item>
      <title>Proc report page option</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37695#M7493</link>
      <description>Hi,&lt;BR /&gt;
 How to generate an output in rtf in a single page. The output is displayed on more than one page.but I need to show them in a single page.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
I have two columns. Month and count. The month is from 2004 to may 2010.So for each month I calculate the count.in the proc report the out put flows to the next page.we need to display the whole output in a single page.&lt;BR /&gt;
&lt;BR /&gt;
Month                   count&lt;BR /&gt;
Jan04                     25&lt;BR /&gt;
Feb04                    35&lt;BR /&gt;
.&lt;BR /&gt;
.&lt;BR /&gt;
.&lt;BR /&gt;
Jan10                     30&lt;BR /&gt;
.&lt;BR /&gt;
,&lt;BR /&gt;
May10                   35</description>
      <pubDate>Fri, 18 Jun 2010 18:44:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37695#M7493</guid>
      <dc:creator>SASPhile</dc:creator>
      <dc:date>2010-06-18T18:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report page option</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37696#M7494</link>
      <description>Hi:&lt;BR /&gt;
  For ODS RTF and ODS PDF, you can use the COLUMNS= option in order to make a multi-column report.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods rtf file='c:\temp\twocols.rtf' columns=2;&lt;BR /&gt;
ods pdf file='c:\temp\twocols.pdf' columns=2;&lt;BR /&gt;
  &lt;BR /&gt;
  proc report data=sashelp.shoes nowd;&lt;BR /&gt;
     column region subsidiary n;&lt;BR /&gt;
     define region / group;&lt;BR /&gt;
     define subsidiary / group;&lt;BR /&gt;
     define n / 'Count';&lt;BR /&gt;
  run;&lt;BR /&gt;
   &lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Sat, 19 Jun 2010 02:48:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37696#M7494</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-06-19T02:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report page option</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37697#M7495</link>
      <description>There is a option for proc report.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
proc report data=sas.help nowd panels=3 ;&lt;BR /&gt;
...........&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp</description>
      <pubDate>Sun, 27 Jun 2010 05:56:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37697#M7495</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-06-27T05:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report page option</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37698#M7496</link>
      <description>Hi:&lt;BR /&gt;
  The PANELS= option for PROC REPORT is a LISTING only option. It will not work for ODS PDF or ODS RTF or ODS HTML. If you look on the PROC REPORT statement documentation page, you will see that some options, such as PANEL, HEADLINE, HEADSKIP, etc, all have an asterisk (*) after them:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#/documentation/cdl/en/proc/61895/HTML/default/a002473620.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#/documentation/cdl/en/proc/61895/HTML/default/a002473620.htm&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
with the note that the asterisk means:&lt;BR /&gt;
&lt;B&gt;&lt;I&gt;* Traditional SAS monospace output only. &lt;/I&gt;&lt;/B&gt;&lt;I&gt;&lt;/I&gt; "Traditional SAS monospace" output means the LISTING destination or output window. Since the original poster said they were interested in RTF, that eliminated the use of PANELS= from being a possibility. Specifically, in the PANELS= documentation it states that:&lt;BR /&gt;
&lt;B&gt;Restriction: This option has no effect on ODS destinations other than traditional SAS monospace output. However, the COLUMNS= option in the ODS PRINTER, ODS PDF, and ODS RTF statements produces similar results.  &lt;BR /&gt;
&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
Other PROC REPORT options are also LISTING options, such as BOX, COLWIDTH, FORMCHAR, SPACING, PSPACE and DEFINE and BREAK statement options such as: FLOW, WIDTH,  DOL, DUL, OL, UL, For more information about the fact that these LISTING-only options do not work with other ODS destinations, see this Tech Support note:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/2/549.html" target="_blank"&gt;http://support.sas.com/kb/2/549.html&lt;/A&gt;&lt;BR /&gt;
and this "workaround" example code for how to simulate some of the options (mostly using CSS style properties):&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/templateFAQ/report1.html" target="_blank"&gt;http://support.sas.com/rnd/base/ods/templateFAQ/report1.html&lt;/A&gt;&lt;BR /&gt;
  &lt;BR /&gt;
cynthia</description>
      <pubDate>Sun, 27 Jun 2010 14:52:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37698#M7496</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-06-27T14:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report page option</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37699#M7497</link>
      <description>thx. learned it from you.</description>
      <pubDate>Mon, 28 Jun 2010 05:41:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37699#M7497</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-06-28T05:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report page option</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37700#M7498</link>
      <description>Does the 'column=2' option shown in your Jun-18 post work with ODS/XLM output?  Thanks.</description>
      <pubDate>Wed, 08 Sep 2010 03:48:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37700#M7498</guid>
      <dc:creator>jlester</dc:creator>
      <dc:date>2010-09-08T03:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report page option</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37701#M7499</link>
      <description>Hi:&lt;BR /&gt;
  I'm not sure what you mean by ODS/XLM??? What destination is that??? &lt;BR /&gt;
 &lt;BR /&gt;
  I believe that if you follow the documentation link below, you will find that the COLUMNS= option is only documented as working for Printer family (ODS PDF) and RTF destinations:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002233360.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002233360.htm&lt;/A&gt;  (RTF)&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002231506.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002231506.htm&lt;/A&gt; (PDF)&lt;BR /&gt;
            &lt;BR /&gt;
You do not see the option in ODS LISTING destination doc, for example:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002231527.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002231527.htm&lt;/A&gt;&lt;BR /&gt;
             &lt;BR /&gt;
To check other destinations (what you mean by ODS/XLM), check the destinations here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002228116.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002228116.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 08 Sep 2010 13:53:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-report-page-option/m-p/37701#M7499</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-09-08T13:53:14Z</dc:date>
    </item>
  </channel>
</rss>

