<?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 clear in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/clear/m-p/581642#M165336</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 24 May 2021 08:21:29 GMT</pubDate>
    <dc:creator>HannaZhang</dc:creator>
    <dc:date>2021-05-24T08:21:29Z</dc:date>
    <item>
      <title>clear</title>
      <link>https://communities.sas.com/t5/SAS-Programming/clear/m-p/581642#M165336</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 May 2021 08:21:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/clear/m-p/581642#M165336</guid>
      <dc:creator>HannaZhang</dc:creator>
      <dc:date>2021-05-24T08:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Display of group variables in report process by defining</title>
      <link>https://communities.sas.com/t5/SAS-Programming/clear/m-p/582634#M165758</link>
      <description>&lt;P&gt;We can't quite make out the structure from the screenshot and the code, which seem to only be vaguely related. but this looks like a job for proc tabulate. What is the report structure you want?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2019 23:36:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/clear/m-p/582634#M165758</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-08-20T23:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Display of group variables in report process by defining</title>
      <link>https://communities.sas.com/t5/SAS-Programming/clear/m-p/582689#M165791</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WeChat Image_20190821151206.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/31895i80409E50AD9C7C32/image-size/large?v=v2&amp;amp;px=999" role="button" title="WeChat Image_20190821151206.png" alt="WeChat Image_20190821151206.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I don't know if the following picture can help you understand the report structure&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 07:13:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/clear/m-p/582689#M165791</guid>
      <dc:creator>HannaZhang</dc:creator>
      <dc:date>2019-08-21T07:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Display of group variables in report process by defining</title>
      <link>https://communities.sas.com/t5/SAS-Programming/clear/m-p/583048#M165938</link>
      <description>&lt;P&gt;I can't be bothered to try and guess what you need if you can't be bothered to explain and show usage examples.&lt;/P&gt;
&lt;P&gt;I suggest you study this and modify as needed:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data HAVE;
  retain SOC PRO COL_T A_TR B_TR C_TR COL_R A_RT B_RT C_RT COL A_TOT B_TOT C_TOT 'A';
  output; output;
run;
proc tabulate missing;
  class SOC PRO COL_T A_TR B_TR C_TR COL_R A_RT B_RT C_RT COL A_TOT B_TOT C_TOT ;
  table PRO*n=' ',COL_T * ( A_TR  B_TR  C_TR  )
                  COL_R * ( A_RT  B_RT  C_RT  )
                  COL   * ( A_TOT B_TOT C_TOT ) ;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV class="branch"&gt;&lt;BR /&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure Tabulate: Table 1" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;&lt;COLGROUP&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt;&lt;/COLGROUP&gt; &lt;COLGROUP&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt;&lt;/COLGROUP&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="c m header" colspan="3" rowspan="4" scope="colgroup"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TH class="c header" colspan="3" scope="colgroup"&gt;COL_T&lt;/TH&gt;
&lt;TH class="c header" colspan="3" scope="colgroup"&gt;COL_R&lt;/TH&gt;
&lt;TH class="c header" colspan="3" scope="colgroup"&gt;COL&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="c header" colspan="3" scope="colgroup"&gt;A&lt;/TH&gt;
&lt;TH class="c header" colspan="3" scope="colgroup"&gt;A&lt;/TH&gt;
&lt;TH class="c header" colspan="3" scope="colgroup"&gt;A&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="c header" scope="col"&gt;A_TR&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;B_TR&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;C_TR&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;A_RT&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;B_RT&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;C_RT&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;A_TOT&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;B_TOT&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;C_TOT&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="c header" scope="col"&gt;A&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;A&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;A&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;A&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;A&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;A&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;A&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;A&lt;/TH&gt;
&lt;TH class="c header" scope="col"&gt;A&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="l t rowheader" scope="row"&gt;SOC&lt;/TH&gt;
&lt;TH class="l t rowheader" scope="row"&gt;PRO&lt;/TH&gt;
&lt;TH class="l t rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TD rowspan="2" class="r b data"&gt;2&lt;/TD&gt;
&lt;TD rowspan="2" class="r b data"&gt;2&lt;/TD&gt;
&lt;TD rowspan="2" class="r b data"&gt;2&lt;/TD&gt;
&lt;TD rowspan="2" class="r b data"&gt;2&lt;/TD&gt;
&lt;TD rowspan="2" class="r b data"&gt;2&lt;/TD&gt;
&lt;TD rowspan="2" class="r b data"&gt;2&lt;/TD&gt;
&lt;TD rowspan="2" class="r b data"&gt;2&lt;/TD&gt;
&lt;TD rowspan="2" class="r b data"&gt;2&lt;/TD&gt;
&lt;TD rowspan="2" class="r b data"&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l t rowheader" scope="row"&gt;A&lt;/TH&gt;
&lt;TH class="l t rowheader" scope="row"&gt;A&lt;/TH&gt;
&lt;TH class="c rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 04:15:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/clear/m-p/583048#M165938</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-08-22T04:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Display of group variables in report process by defining</title>
      <link>https://communities.sas.com/t5/SAS-Programming/clear/m-p/583089#M165961</link>
      <description>Thanks，It helps a lot！</description>
      <pubDate>Thu, 22 Aug 2019 07:52:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/clear/m-p/583089#M165961</guid>
      <dc:creator>HannaZhang</dc:creator>
      <dc:date>2019-08-22T07:52:21Z</dc:date>
    </item>
  </channel>
</rss>

