<?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: change structure of summary table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/change-structure-of-summary-table/m-p/629089#M185992</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data SummaryInfo;
input YYMM $ Z1 $ z2 $ Y;
cards;
1901 a G1 10
1901 a G2 20
1901 b G1 30
1901 b G2 40
1901 c G1 50
1901 c G2 60
1901 d G1 70
1901 d G2 80
1902 a G1 15
1902 a G2 25
1902 b G1 35
1902 b G2 45
1902 c G1 55
1902 c G2 65
1902 d G1 75
1902 d G2 85
;
run;
proc sort data=SummaryInfo;by Z1  Z2;run;
proc transpose data=SummaryInfo out=wide1(drop=_name_) prefix=_;
    by Z1  Z2;
    id YYMM;
    var Y;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 03 Mar 2020 11:24:52 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2020-03-03T11:24:52Z</dc:date>
    <item>
      <title>change structure of summary table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-structure-of-summary-table/m-p/629081#M185989</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I want to change the structure of the summary table&lt;/P&gt;
&lt;P&gt;I want to create a summary table that will have following structure as you can see in the photo&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data SummaryInfo;
input YYMM $ Z1 $ z2 $ Y;
cards;
1901 a G1 10
1901 a G2 20
1901 b G1 30
1901 b G2 40
1901 c G1 50
1901 c G2 60
1901 d G1 70
1901 d G2 80
1902 a G1 15
1902 a G2 25
1902 b G1 35
1902 b G2 45
1902 c G1 55
1902 c G2 65
1902 d G1 75
1902 d G2 85
;
run&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PhotoEditor-20200303130344.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36536i0EACF5A19878C791/image-size/large?v=v2&amp;amp;px=999" role="button" title="PhotoEditor-20200303130344.jpg" alt="PhotoEditor-20200303130344.jpg" /&gt;&lt;/span&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Mar 2020 11:07:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-structure-of-summary-table/m-p/629081#M185989</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2020-03-03T11:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: change structure of summary table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-structure-of-summary-table/m-p/629084#M185990</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The picture seems to be missing. Could you please update your post?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 11:04:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-structure-of-summary-table/m-p/629084#M185990</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-03-03T11:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: change structure of summary table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-structure-of-summary-table/m-p/629087#M185991</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="20200303_131326.jpg" style="width: 450px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36538iAC29627B04C20935/image-size/large?v=v2&amp;amp;px=999" role="button" title="20200303_131326.jpg" alt="20200303_131326.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 11:18:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-structure-of-summary-table/m-p/629087#M185991</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2020-03-03T11:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: change structure of summary table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/change-structure-of-summary-table/m-p/629089#M185992</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data SummaryInfo;
input YYMM $ Z1 $ z2 $ Y;
cards;
1901 a G1 10
1901 a G2 20
1901 b G1 30
1901 b G2 40
1901 c G1 50
1901 c G2 60
1901 d G1 70
1901 d G2 80
1902 a G1 15
1902 a G2 25
1902 b G1 35
1902 b G2 45
1902 c G1 55
1902 c G2 65
1902 d G1 75
1902 d G2 85
;
run;
proc sort data=SummaryInfo;by Z1  Z2;run;
proc transpose data=SummaryInfo out=wide1(drop=_name_) prefix=_;
    by Z1  Z2;
    id YYMM;
    var Y;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Mar 2020 11:24:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/change-structure-of-summary-table/m-p/629089#M185992</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2020-03-03T11:24:52Z</dc:date>
    </item>
  </channel>
</rss>

