<?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 ods rtf print issue in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-rtf-print-issue/m-p/329291#M17853</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to get rtf output. The first page has&amp;nbsp;&lt;SPAN&gt;orientation=landscape, and the second page has orientation=portrait;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The below is my code. Why it does not work?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options orientation=landscape obs=5;&lt;BR /&gt;ods rtf file="C:\XXXXX\Desktop\111.rtf";&lt;BR /&gt;proc print data=sashelp.class;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;options orientation=portrait;&lt;BR /&gt;proc print data=sashelp.retail; run;&lt;BR /&gt;ods rtf close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another question is if I&amp;nbsp;only use orientation=portrait, which option can put these two proc output in one page, not like above the outputs are on different pages? Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 02 Feb 2017 04:11:12 GMT</pubDate>
    <dc:creator>Niugg2010</dc:creator>
    <dc:date>2017-02-02T04:11:12Z</dc:date>
    <item>
      <title>ods rtf print issue</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-rtf-print-issue/m-p/329291#M17853</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to get rtf output. The first page has&amp;nbsp;&lt;SPAN&gt;orientation=landscape, and the second page has orientation=portrait;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The below is my code. Why it does not work?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options orientation=landscape obs=5;&lt;BR /&gt;ods rtf file="C:\XXXXX\Desktop\111.rtf";&lt;BR /&gt;proc print data=sashelp.class;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;options orientation=portrait;&lt;BR /&gt;proc print data=sashelp.retail; run;&lt;BR /&gt;ods rtf close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another question is if I&amp;nbsp;only use orientation=portrait, which option can put these two proc output in one page, not like above the outputs are on different pages? Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 04:11:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-rtf-print-issue/m-p/329291#M17853</guid>
      <dc:creator>Niugg2010</dc:creator>
      <dc:date>2017-02-02T04:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: ods rtf print issue</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-rtf-print-issue/m-p/329293#M17854</link>
      <description>&lt;P&gt;What do you mean by&amp;nbsp;&lt;STRONG&gt;it does not work?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Are both landscape ? Are both portrait ? Is there a syntax error?&lt;/P&gt;
&lt;P&gt;Next time post your log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Meanwhile try next code (I haven't tested it):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options orientation=landscape obs=5;
ods rtf file="C:\XXXXX\Desktop\111.rtf";
proc print data=sashelp.class;
run;


&lt;STRONG&gt;ODS&lt;/STRONG&gt; options orientation=portrait;
proc print data=sashelp.retail; run;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 Feb 2017 04:43:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-rtf-print-issue/m-p/329293#M17854</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-02-02T04:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: ods rtf print issue</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-rtf-print-issue/m-p/329299#M17855</link>
      <description>Hi:&lt;BR /&gt;  This Tech Support note shows the exact syntax you need to use to do what you want to do. My default every procedure step will start a new page.&lt;BR /&gt;&lt;A href="http://support.sas.com/kb/24/559.html" target="_blank"&gt;http://support.sas.com/kb/24/559.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;cynthia</description>
      <pubDate>Thu, 02 Feb 2017 05:46:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-rtf-print-issue/m-p/329299#M17855</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-02-02T05:46:24Z</dc:date>
    </item>
  </channel>
</rss>

