<?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: Creating a Tabulate format in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Creating-a-Tabulate-format/m-p/414698#M67522</link>
    <description>&lt;P&gt;What's your "location"? Dept, city or zone, or some combination?&lt;/P&gt;
&lt;P&gt;Basically, what you want is a proc print with by.&lt;/P&gt;</description>
    <pubDate>Sun, 19 Nov 2017 20:18:51 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-11-19T20:18:51Z</dc:date>
    <item>
      <title>Creating a Tabulate format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-a-Tabulate-format/m-p/414682#M67518</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&amp;nbsp;can anyone help me out. I have attached an Image of a tabulate structure which I have tried but couldn't.&lt;/P&gt;&lt;P&gt;Someone tell me or share the code how to create that.&amp;nbsp;&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="Untitled.png" style="width: 516px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16727i83DDEC207F540628/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Nov 2017 19:46:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-a-Tabulate-format/m-p/414682#M67518</guid>
      <dc:creator>Debashish_</dc:creator>
      <dc:date>2017-11-19T19:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Tabulate format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-a-Tabulate-format/m-p/414683#M67519</link>
      <description>&lt;P&gt;What does your data look like? We can not give you a code answer if we don't know what your data looks like &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Nov 2017 19:47:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-a-Tabulate-format/m-p/414683#M67519</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2017-11-19T19:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Tabulate format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-a-Tabulate-format/m-p/414689#M67520</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="aaaaa.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16729i3A1360826376A7B4/image-size/large?v=v2&amp;amp;px=999" role="button" title="aaaaa.png" alt="aaaaa.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Nov 2017 19:53:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-a-Tabulate-format/m-p/414689#M67520</guid>
      <dc:creator>Debashish_</dc:creator>
      <dc:date>2017-11-19T19:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Tabulate format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-a-Tabulate-format/m-p/414696#M67521</link>
      <description>&lt;P&gt;Tabulate is usually used when you want to summarize data. There's nothing indicated in your requirements that show the need for summarization. This would be better suited to PROC REPORT or PRINT.&amp;nbsp;&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="Screen Shot 2017-11-19 at 1.14.07 PM.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16730i718F31440C51E4FF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-11-19 at 1.14.07 PM.png" alt="Screen Shot 2017-11-19 at 1.14.07 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC TABULATE also would need a statistic, here's an example of PROC TABULATE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data=class;
by sex;
class name age height;
table name*age*height , N ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 19 Nov 2017 20:16:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-a-Tabulate-format/m-p/414696#M67521</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-11-19T20:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Tabulate format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-a-Tabulate-format/m-p/414698#M67522</link>
      <description>&lt;P&gt;What's your "location"? Dept, city or zone, or some combination?&lt;/P&gt;
&lt;P&gt;Basically, what you want is a proc print with by.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Nov 2017 20:18:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-a-Tabulate-format/m-p/414698#M67522</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-19T20:18:51Z</dc:date>
    </item>
  </channel>
</rss>

