<?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: Bi-section report in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666857#M24246</link>
    <description>No, for that type of report you need to follow the process I outlined in my tutorial, second link in my first response.&lt;BR /&gt;</description>
    <pubDate>Fri, 03 Jul 2020 16:07:10 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2020-07-03T16:07:10Z</dc:date>
    <item>
      <title>Bi-section report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666658#M24238</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a bi-section report on one page with the top section being a line graph (like patient weight over the time) and bottom section being the patient Adverse Event listing so that it is easier to review if there is any relationship between weight loss or gain with the Adverse Event experienced.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could someone point out the direction for me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 18:11:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666658#M24238</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-02T18:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Bi-section report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666664#M24239</link>
      <description>&lt;P&gt;Get something together for one version of the report and then you can generalize it. Here's a basic example of what you need to do. I would suggest first getting the code for your graphs and tables, then put them together and then automate it for everyone.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;UCLA introductory tutorial on macro variables and macros&lt;BR /&gt;&lt;A href="https://stats.idre.ucla.edu/sas/seminars/sas-macros-introduction/" target="_blank"&gt;https://stats.idre.ucla.edu/sas/seminars/sas-macros-introduction/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Tutorial on converting a working program to a macro&lt;BR /&gt;&lt;BR /&gt;This method is pretty robust and helps prevent errors and makes it much easier to debug your code. Obviously biased, because I wrote it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;A href="https://github.com/statgeek/SAS-Tutorials/blob/master/Turning%20a%20program%20into%20a%20macro.md" target="_blank"&gt;https://github.com/statgeek/SAS-Tutorials/blob/master/Turning%20a%20program%20into%20a%20macro.md&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 18:36:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666664#M24239</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-07-02T18:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Bi-section report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666830#M24241</link>
      <description>&lt;P&gt;Thanks for your reply&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Probably I wasn't clear, I have the program to generate the png graph by patient though ODS RTF, so the top part of Word document is the graph I need, I just want to know how to insert the listing of Adverse Events of the same patient in the bottom part of the page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dose anyone else have any idea?&lt;/P&gt;&lt;P&gt;Your help would be greatly appreciated!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2020 14:11:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666830#M24241</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-03T14:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Bi-section report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666846#M24242</link>
      <description>That was unclear to me for sure. &lt;BR /&gt;Use a PROC REPORT/PRINT and specify startpage=no on the ODS RTF statement to control when a new page is started. &lt;BR /&gt;&lt;BR /&gt;ods rtf file='/folders/myfolders/demo.rtf' style=meadow startpage=no;&lt;BR /&gt;ods graphics / height = 3in width=5 in;&lt;BR /&gt;proc sgplot data=sashelp.class;&lt;BR /&gt;scatter x=height y=weight;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc print data=sashelp.class;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;ods rtf close;&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Jul 2020 15:30:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666846#M24242</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-07-03T15:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Bi-section report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666852#M24244</link>
      <description>&lt;P&gt;Thanks again&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is really helpful.I have added "By Name" in below and I am hoping that each page has the graph on top and list at the bottom (instead of all the graphs first and then followed by all the list of table). Is it doable?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods rtf file='C:\Users\Yichuan Zhang\Documents\demo.rtf' style=meadow startpage=no;&lt;BR /&gt;ods graphics / height = 3in width=5 in;&lt;BR /&gt;proc sgplot data=sashelp.class;&lt;BR /&gt;scatter x=height y=weight;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;by Name;&lt;/STRONG&gt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc print data=sashelp.class;&lt;BR /&gt;&lt;STRONG&gt;by Name;&lt;/STRONG&gt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods rtf close;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2020 15:46:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666852#M24244</guid>
      <dc:creator>zimcom</dc:creator>
      <dc:date>2020-07-03T15:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Bi-section report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666857#M24246</link>
      <description>No, for that type of report you need to follow the process I outlined in my tutorial, second link in my first response.&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Jul 2020 16:07:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Bi-section-report/m-p/666857#M24246</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-07-03T16:07:10Z</dc:date>
    </item>
  </channel>
</rss>

