<?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: No Print on Proc Tabulate in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262450#M51232</link>
    <description>&lt;P&gt;The name of the tabulate output is 'Table'. You can use &lt;A href="http://support.sas.com/documentation/cdl/en/odsug/67921/HTML/default/viewer.htm#n0edvjbwu4y1bun1qgmzbk3s3vix.htm" target="_blank"&gt;ODS EXCLUDE&lt;/A&gt; to prevent it from being output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods exclude table; 
proc tabulate data=&amp;lt;whatever&amp;gt;;
...
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 08 Apr 2016 14:36:28 GMT</pubDate>
    <dc:creator>Tim_SAS</dc:creator>
    <dc:date>2016-04-08T14:36:28Z</dc:date>
    <item>
      <title>No Print on Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262445#M51229</link>
      <description>&lt;P&gt;Hi. I have a Proc Tabulate and a Proc Print that ouput results. I'm looking to suppress the Proc Tabulate output, but keep the Proc Print output. There doesn't seem to be a No Print option for Proc Tabulate - is there an alternate means of disabling and enabling output to both the Output and Results windows?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions would be appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2016 14:21:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262445#M51229</guid>
      <dc:creator>buechler66</dc:creator>
      <dc:date>2016-04-08T14:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: No Print on Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262450#M51232</link>
      <description>&lt;P&gt;The name of the tabulate output is 'Table'. You can use &lt;A href="http://support.sas.com/documentation/cdl/en/odsug/67921/HTML/default/viewer.htm#n0edvjbwu4y1bun1qgmzbk3s3vix.htm" target="_blank"&gt;ODS EXCLUDE&lt;/A&gt; to prevent it from being output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods exclude table; 
proc tabulate data=&amp;lt;whatever&amp;gt;;
...
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Apr 2016 14:36:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262450#M51232</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2016-04-08T14:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: No Print on Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262452#M51233</link>
      <description>And this will not suppress the Proc Print? How do I turn it back on?</description>
      <pubDate>Fri, 08 Apr 2016 14:38:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262452#M51233</guid>
      <dc:creator>buechler66</dc:creator>
      <dc:date>2016-04-08T14:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: No Print on Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262456#M51236</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS EXCLUDE ALL; *turn it off;

code;


ODS SELECT ALL; *turn it back on;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Apr 2016 14:44:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262456#M51236</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-08T14:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: No Print on Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262460#M51240</link>
      <description>&lt;P&gt;The 'Table' in the &lt;FONT face="courier new,courier"&gt;ODS EXCLUDE Table;&lt;/FONT&gt; statement is the name of PROC TABULATE's output table. That statement only suppresses PROC TABULATE's output, not PROC PRINT's output. ODS resets the exclusion list after each proc, so you don't have to turn it back on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can read about ODS EXCLUDE and its sister statement, &lt;A href="http://support.sas.com/documentation/cdl/en/odsug/67921/HTML/default/viewer.htm#p1b72ff70v3obrn16aanp1r9q2bu.htm" target="_blank"&gt;ODS SELECT&lt;/A&gt;, &lt;A href="http://support.sas.com/documentation/cdl/en/odsug/67921/HTML/default/viewer.htm#n1ovhlum2jap2nn1gy6w5c93kknh.htm" target="_blank"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2016 14:50:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262460#M51240</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2016-04-08T14:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: No Print on Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262461#M51241</link>
      <description>&lt;P&gt;Maybe I'm using this wrong, but I'm still getting Proc Tabulate output and no longer getting my Proc Print. &amp;nbsp;&lt;img id="manfrustrated" class="emoticon emoticon-manfrustrated" src="https://communities.sas.com/i/smilies/16x16_man-frustrated.png" alt="Man Frustrated" title="Man Frustrated" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=FinalData force;
	by rule_order ad_dt;
run;

ods exclude FinalData; 
Proc tabulate data=FinalData missing out=FinalData;
   class Rule_Order ad_dt;
   table rule_order*(ad_dt all)*n;
run;
ods select FinalData; &lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;The SAS System 


    ----------------------------------------------------------------------------------------------------------------------     
    |                                                     RULE_ORDER                                                     |     
    |--------------------------------------------------------------------------------------------------------------------|     
    |                                                        1.5                                                         |     
    |--------------------------------------------------------------------------------------------------------------------|     
    |                                                       AD_DT                                                        |     
    |--------------------------------------------------------------------------------------------------------------------|     
    |15MAR2016:0-|17MAR2016:0-|18MAR2016:0-|19MAR2016:0-|21MAR2016:0-|22MAR2016:0-|23MAR2016:0-|24MAR2016:0-|25MAR2016:0-|     
    |  0:00:00   |  0:00:00   |  0:00:00   |  0:00:00   |  0:00:00   |  0:00:00   |  0:00:00   |  0:00:00   |  0:00:00   |     
    |------------+------------+------------+------------+------------+------------+------------+------------+------------|     
    |     N      |     N      |     N      |     N      |     N      |     N      |     N      |     N      |     N      |     
    |------------+------------+------------+------------+------------+------------+------------+------------+------------|     
    |        1.00|        1.00|        2.00|        6.00|       12.00|        4.00|        7.00|       18.00|      110.00|     
    ----------------------------------------------------------------------------------------------------------------------     
                                                                                                                               
    (Continued)                                                                                                                

 &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Apr 2016 14:53:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262461#M51241</guid>
      <dc:creator>buechler66</dc:creator>
      <dc:date>2016-04-08T14:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: No Print on Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262464#M51244</link>
      <description>FinalData is the name of your data set, not the name of PROC TABULATE's output table. The name of the output table is always 'Table'. You can use the ODS TRACE ON; statement to see the names of the output objects in your program.</description>
      <pubDate>Fri, 08 Apr 2016 14:55:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-Print-on-Proc-Tabulate/m-p/262464#M51244</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2016-04-08T14:55:27Z</dc:date>
    </item>
  </channel>
</rss>

