<?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 Proc tabulate - Allignment in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-Allignment/m-p/569065#M160309</link>
    <description>&lt;P&gt;Hi experts,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to align my analysis in a particular format but my code won't work.&lt;/P&gt;&lt;P&gt;I need your suggestion to align in the given format. Kindly go through the below sample.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input age$5. Grp$ arg$;
cards;
18-25 G a
18-25 G b
18-25 O c
18-25 P a
18-25 G c
26-35 P b
26-35 G a
26-35 G a
;
proc tabulate data = have;
class age Grp arg;
tables age*Grp, arg;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="img s.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30561i1082372E57125AFF/image-size/large?v=v2&amp;amp;px=999" role="button" title="img s.jpg" alt="img s.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The result shares the perfect OP values but I required it in the right side displayed tabular format.&lt;/P&gt;&lt;P&gt;Please help me to rearrange the table. I tried a lot but nothing works well.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
    <pubDate>Wed, 26 Jun 2019 12:45:19 GMT</pubDate>
    <dc:creator>Sathish_jammy</dc:creator>
    <dc:date>2019-06-26T12:45:19Z</dc:date>
    <item>
      <title>Proc tabulate - Allignment</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-Allignment/m-p/569065#M160309</link>
      <description>&lt;P&gt;Hi experts,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to align my analysis in a particular format but my code won't work.&lt;/P&gt;&lt;P&gt;I need your suggestion to align in the given format. Kindly go through the below sample.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input age$5. Grp$ arg$;
cards;
18-25 G a
18-25 G b
18-25 O c
18-25 P a
18-25 G c
26-35 P b
26-35 G a
26-35 G a
;
proc tabulate data = have;
class age Grp arg;
tables age*Grp, arg;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="img s.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30561i1082372E57125AFF/image-size/large?v=v2&amp;amp;px=999" role="button" title="img s.jpg" alt="img s.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The result shares the perfect OP values but I required it in the right side displayed tabular format.&lt;/P&gt;&lt;P&gt;Please help me to rearrange the table. I tried a lot but nothing works well.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 12:45:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-Allignment/m-p/569065#M160309</guid>
      <dc:creator>Sathish_jammy</dc:creator>
      <dc:date>2019-06-26T12:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc tabulate - Allignment</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-Allignment/m-p/569091#M160321</link>
      <description>&lt;P&gt;Sounds like you want&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;tables age, arg*grp*N ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can use&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;keylabel n=' ';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to suppress the adding of the N label to the report.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 13:36:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-Allignment/m-p/569091#M160321</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-06-26T13:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Proc tabulate - Allignment</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-Allignment/m-p/569321#M160424</link>
      <description>&lt;P&gt;Thank you so much, Buddy!&amp;nbsp;You made my day&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 03:40:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-tabulate-Allignment/m-p/569321#M160424</guid>
      <dc:creator>Sathish_jammy</dc:creator>
      <dc:date>2019-06-27T03:40:18Z</dc:date>
    </item>
  </channel>
</rss>

