<?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: Proc Tabulate Question in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-Question/m-p/534055#M146472</link>
    <description>&lt;P&gt;Yes! Thank you. i simply put " *Sum = ' ' " and it stopped showing that row.&lt;/P&gt;</description>
    <pubDate>Fri, 08 Feb 2019 19:57:04 GMT</pubDate>
    <dc:creator>shril_21</dc:creator>
    <dc:date>2019-02-08T19:57:04Z</dc:date>
    <item>
      <title>Proc Tabulate Question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-Question/m-p/534044#M146470</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have managed to run Proc Tabulate with 3 pieces of data. However, upon running it, the results show a row labeled "Sum", below which, have the numbers I want. However, is there a way show these number without having the word "Sum". I am aware of simply doing proc print.&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="Capture1.PNG" style="width: 266px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26999i397765A846B97652/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture1.PNG" alt="Capture1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC TABULATE DATA= sh.totals1 OUT= sh.tab1;
	VAR weight_agg agg_mort Total;
	Title Data1;
	TABLE weight_agg Total agg_mort;
RUN;

PROC TABULATE DATA= sh.totals2 OUT= sh.tab2;
	VAR weight_agg agg_mort Total;
	Title Data2;
	TABLE weight_agg Total agg_mort;
RUN;

PROC TABULATE DATA= sh.totals3 OUT= sh.tab3;
	VAR weight_agg agg_mort Total;
	Title Data3;
	TABLE weight_agg Total agg_mort;
RUN;

PROC TABULATE DATA= sh.totals4 OUT= sh.tab4;
	VAR weight_agg agg_mort Total;
	Title Data4;
	TABLE weight_agg Total agg_mort;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 19:40:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-Question/m-p/534044#M146470</guid>
      <dc:creator>shril_21</dc:creator>
      <dc:date>2019-02-08T19:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Tabulate Question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-Question/m-p/534053#M146471</link>
      <description>&lt;P&gt;See if this example helps?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You need something like&amp;nbsp;TABLE sex ,(height weight) *&lt;STRONG&gt; mean = ' ' ;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC TABULATE data=sashelp.class;
CLASS sex;
VAR height weight;
TABLE sex ,
 (height weight) * mean = ' ' ;
RUN; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;as opposed to&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC TABULATE data=sashelp.class;
CLASS sex;
VAR height weight;
TABLE sex ,
 (height weight) * mean ;
RUN; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 19:49:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-Question/m-p/534053#M146471</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-02-08T19:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Tabulate Question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-Question/m-p/534055#M146472</link>
      <description>&lt;P&gt;Yes! Thank you. i simply put " *Sum = ' ' " and it stopped showing that row.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 19:57:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-Question/m-p/534055#M146472</guid>
      <dc:creator>shril_21</dc:creator>
      <dc:date>2019-02-08T19:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Tabulate Question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-Question/m-p/534064#M146475</link>
      <description>&lt;P&gt;If you have a complex table or multiple tables and want to change the appearance for &lt;STRONG&gt;all&lt;/STRONG&gt; instances of one or more statistics that can be done similarly in a KEYLABEL statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Keylabel sum=' '; would change the behavior for all of the SUM requests in all tables for a proc tabulate call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Additionally when doing multiple similar tables you might consider combining your data sets and adding a variable that identifies the source. Then use the combined data set with that variable as the PAGE dimension, one more row before the current table statements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 20:44:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-Question/m-p/534064#M146475</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-02-08T20:44:55Z</dc:date>
    </item>
  </channel>
</rss>

