<?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: Move group on proc report as header in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Move-group-on-proc-report-as-header/m-p/459645#M20914</link>
    <description>Hi: Can you post your fake data? The previous code that I posted was also just using 1 dataset, with the By Group information on top of each group's section. So it is exactly the same as what you are asking here.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
    <pubDate>Thu, 03 May 2018 13:23:35 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-05-03T13:23:35Z</dc:date>
    <item>
      <title>Move group on proc report as header</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Move-group-on-proc-report-as-header/m-p/459180#M20909</link>
      <description>&lt;P&gt;Is there a way to move the groupings on proc report above each data for that groupings?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="report1.PNG" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20303iC6670E597DC30159/image-size/medium?v=v2&amp;amp;px=400" role="button" title="report1.PNG" alt="report1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to move the groupings above similar to this one.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="report2.PNG" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20304iF44DAFCA9F171DCD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="report2.PNG" alt="report2.PNG" /&gt;&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;Here's the code that I'm using&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	proc report nowd data=dataset1;
				col (
				  (
				 	 groupings
				 	 ('Category A' categ_a_data1 categ_a_data2 categ_a_data3) 
				  	('Category B' categ_b_data)
			  		)
				);
				define groupings/ group;
			run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 May 2018 04:43:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Move-group-on-proc-report-as-header/m-p/459180#M20909</guid>
      <dc:creator>albertsamaniego</dc:creator>
      <dc:date>2018-05-02T04:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Move group on proc report as header</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Move-group-on-proc-report-as-header/m-p/459278#M20910</link>
      <description>Hi:&lt;BR /&gt;  That looks like Report #2 in this previous posting: &lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/Combine-Two-or-More-Proc-Report-Outputs-into-1-Output/m-p/456368#M20871" target="_blank"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/Combine-Two-or-More-Proc-Report-Outputs-into-1-Output/m-p/456368#M20871&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;Can you explain what is different between this question and the question you originally posted? Can you provide data? Is that your COMPLETE code? That doesn't look like the output that should be created by that code because the default usage for all your character variables should be DISPLAY, but the report doesn't look like they are DISPLAY usage.&lt;BR /&gt;&lt;BR /&gt;cynthia</description>
      <pubDate>Wed, 02 May 2018 12:33:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Move-group-on-proc-report-as-header/m-p/459278#M20910</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-05-02T12:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Move group on proc report as header</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Move-group-on-proc-report-as-header/m-p/459523#M20913</link>
      <description>from my previous post, i'm just want to combine multiple proc reports from different dataset into 1 rtf table. but from this one, i'm just using one dataset and 1 proc report. and yes that's the complete code that i'm using and it's working. i just change the column names and the data because of the confidential data.&lt;BR /&gt;</description>
      <pubDate>Thu, 03 May 2018 00:44:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Move-group-on-proc-report-as-header/m-p/459523#M20913</guid>
      <dc:creator>albertsamaniego</dc:creator>
      <dc:date>2018-05-03T00:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Move group on proc report as header</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Move-group-on-proc-report-as-header/m-p/459645#M20914</link>
      <description>Hi: Can you post your fake data? The previous code that I posted was also just using 1 dataset, with the By Group information on top of each group's section. So it is exactly the same as what you are asking here.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
      <pubDate>Thu, 03 May 2018 13:23:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Move-group-on-proc-report-as-header/m-p/459645#M20914</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-05-03T13:23:35Z</dc:date>
    </item>
  </channel>
</rss>

