<?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 How to force two outputs from proc report on one page and keep different titles? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-force-two-outputs-from-proc-report-on-one-page-and-keep/m-p/108149#M9956</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options nodate nonumber;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods rtf file="c:\temp\class and heart.rtf";&lt;/P&gt;&lt;P&gt;proc report data=sashelp.class(where=(sex='F')) nowd ;&lt;/P&gt;&lt;P&gt;column name age weight;&lt;/P&gt;&lt;P&gt;title "sashelp.class";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc report data=sashelp.heart(where=(weight&amp;gt;290))&amp;nbsp; nowd ;&lt;/P&gt;&lt;P&gt;column sex height weight diastolic systolic;&lt;/P&gt;&lt;P&gt;title "sashelp.heart";&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;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Oct 2013 15:32:48 GMT</pubDate>
    <dc:creator>Linlin</dc:creator>
    <dc:date>2013-10-09T15:32:48Z</dc:date>
    <item>
      <title>How to force two outputs from proc report on one page and keep different titles?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-force-two-outputs-from-proc-report-on-one-page-and-keep/m-p/108149#M9956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options nodate nonumber;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods rtf file="c:\temp\class and heart.rtf";&lt;/P&gt;&lt;P&gt;proc report data=sashelp.class(where=(sex='F')) nowd ;&lt;/P&gt;&lt;P&gt;column name age weight;&lt;/P&gt;&lt;P&gt;title "sashelp.class";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc report data=sashelp.heart(where=(weight&amp;gt;290))&amp;nbsp; nowd ;&lt;/P&gt;&lt;P&gt;column sex height weight diastolic systolic;&lt;/P&gt;&lt;P&gt;title "sashelp.heart";&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 15:32:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-force-two-outputs-from-proc-report-on-one-page-and-keep/m-p/108149#M9956</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-10-09T15:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to force two outputs from proc report on one page and keep different titles?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-force-two-outputs-from-proc-report-on-one-page-and-keep/m-p/108150#M9957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the startpage= option in ods rtf.&lt;/P&gt;&lt;P&gt;And for multiple titles use ODS RTF TEXT= rather than Title statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options nodate nonumber;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods rtf file="c:\temp\class and heart.rtf" startpage=never;&lt;/P&gt;&lt;P&gt;ODS RTF TEXT="sashelp.class";&lt;/P&gt;&lt;P&gt;proc report data=sashelp.class(where=(sex='F')) nowd ;&lt;/P&gt;&lt;P&gt;column name age weight;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS RTF TEXT="sashelp.heart";&lt;/P&gt;&lt;P&gt;proc report data=sashelp.heart(where=(weight&amp;gt;290))&amp;nbsp; nowd ;&lt;/P&gt;&lt;P&gt;column sex height weight diastolic systolic;&lt;/P&gt;&lt;P&gt;&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 15:45:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-force-two-outputs-from-proc-report-on-one-page-and-keep/m-p/108150#M9957</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-10-09T15:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to force two outputs from proc report on one page and keep different titles?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-force-two-outputs-from-proc-report-on-one-page-and-keep/m-p/108151#M9958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Reeza! - Linlin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 16:02:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-force-two-outputs-from-proc-report-on-one-page-and-keep/m-p/108151#M9958</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-10-09T16:02:15Z</dc:date>
    </item>
  </channel>
</rss>

