<?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 How to fill the cells in a column in Proc Tabulate? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-fill-the-cells-in-a-column-in-Proc-Tabulate/m-p/543359#M7691</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm trying to produce reports in proc tabulate, but I need the output to have all the cells filled in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I get:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="saspic3.JPG" style="width: 395px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27942i0FAFC864B5AE7051/image-size/large?v=v2&amp;amp;px=999" role="button" title="saspic3.JPG" alt="saspic3.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;And this is what I want:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="saspic4.JPG" style="width: 395px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27943i29987D36191FA228/image-size/large?v=v2&amp;amp;px=999" role="button" title="saspic4.JPG" alt="saspic4.JPG" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data=ds01;
class var1 var2 var3 var4;
table var1 * var2 * var3, var4;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Mar 2019 00:34:22 GMT</pubDate>
    <dc:creator>mandonium</dc:creator>
    <dc:date>2019-03-15T00:34:22Z</dc:date>
    <item>
      <title>How to fill the cells in a column in Proc Tabulate?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-fill-the-cells-in-a-column-in-Proc-Tabulate/m-p/543359#M7691</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm trying to produce reports in proc tabulate, but I need the output to have all the cells filled in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I get:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="saspic3.JPG" style="width: 395px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27942i0FAFC864B5AE7051/image-size/large?v=v2&amp;amp;px=999" role="button" title="saspic3.JPG" alt="saspic3.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;And this is what I want:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="saspic4.JPG" style="width: 395px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27943i29987D36191FA228/image-size/large?v=v2&amp;amp;px=999" role="button" title="saspic4.JPG" alt="saspic4.JPG" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data=ds01;
class var1 var2 var3 var4;
table var1 * var2 * var3, var4;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 00:34:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-fill-the-cells-in-a-column-in-Proc-Tabulate/m-p/543359#M7691</guid>
      <dc:creator>mandonium</dc:creator>
      <dc:date>2019-03-15T00:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill the cells in a column in Proc Tabulate?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-fill-the-cells-in-a-column-in-Proc-Tabulate/m-p/543389#M7697</link>
      <description>&lt;P&gt;I don't think there's a way to do that in PROC TABULATE, but there should be in PROC REPORT. Or you can pre-summarize the data using PROC MEANS and display it using PROC REPORT or TABULATE.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/102040"&gt;@mandonium&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I'm trying to produce reports in proc tabulate, but I need the output to have all the cells filled in.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is what I get:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="saspic3.JPG" style="width: 395px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27942i0FAFC864B5AE7051/image-size/large?v=v2&amp;amp;px=999" role="button" title="saspic3.JPG" alt="saspic3.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;And this is what I want:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="saspic4.JPG" style="width: 395px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27943i29987D36191FA228/image-size/large?v=v2&amp;amp;px=999" role="button" title="saspic4.JPG" alt="saspic4.JPG" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Here is my code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data=ds01;
class var1 var2 var3 var4;
table var1 * var2 * var3, var4;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 02:45:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-fill-the-cells-in-a-column-in-Proc-Tabulate/m-p/543389#M7697</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-03-15T02:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill the cells in a column in Proc Tabulate?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-fill-the-cells-in-a-column-in-Proc-Tabulate/m-p/543531#M7727</link>
      <description>&lt;P&gt;I don't know if there is such an option.&lt;/P&gt;
&lt;P&gt;Maybe you should check documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc tabulate data=ds01;&lt;BR /&gt;class var1 var2 var3 var4;&lt;BR /&gt;table var1 * var2 * var3, var4/&lt;STRONG&gt;nocellmerge&lt;/STRONG&gt;;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 13:36:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-fill-the-cells-in-a-column-in-Proc-Tabulate/m-p/543531#M7727</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-03-15T13:36:19Z</dc:date>
    </item>
  </channel>
</rss>

