<?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 in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Proc-Tabulate/m-p/86311#M636</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;option at the end of the table statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ misstext='0';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Sep 2013 15:39:15 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2013-09-18T15:39:15Z</dc:date>
    <item>
      <title>Proc Tabulate</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Proc-Tabulate/m-p/86310#M635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 1 )When I try to run the proc tabulate there is missing data in some of columns. Those columns are numeric which is populated by '.'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I&amp;nbsp; need to replace '.' with 0. I tried missing in &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROC TABULATE DATA= Bncd_aug13_test&amp;nbsp; missing;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; But It didn't worked for me &lt;/P&gt;&lt;P&gt; 2) When I display output Im getting the 'N"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BOU&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ‚&amp;nbsp;&amp;nbsp;&amp;nbsp; CLR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ‚&amp;nbsp;&amp;nbsp;&amp;nbsp; NCL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ‚&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ‚&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ‚&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to hide 'N'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 15:37:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Proc-Tabulate/m-p/86310#M635</guid>
      <dc:creator>pallis</dc:creator>
      <dc:date>2013-09-18T15:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Tabulate</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Proc-Tabulate/m-p/86311#M636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;option at the end of the table statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ misstext='0';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 15:39:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Proc-Tabulate/m-p/86311#M636</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-09-18T15:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Tabulate</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Proc-Tabulate/m-p/86312#M637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got output. I just want to update it may helpful for some who is looking for similar kind of solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{code}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PROC TABULATE DATA= Bncd_Emp&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt; Class a&amp;nbsp; b;&lt;/P&gt;&lt;P&gt; TABLE a, b*n=''/ misstext='0' ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; We can supress the n in output by placing &lt;STRONG&gt;n=''&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt; As @&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="260198" data-username="ballardw" href="https://communities.sas.com/people/ballardw" id="jive-26019880057138287144803" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #0e66ba;"&gt;ballardw&lt;/A&gt;&lt;/STRONG&gt; said in case of missing text in output you can replace with 0 by using &lt;STRONG&gt;misstext='0'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;venky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Sep 2013 05:55:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Proc-Tabulate/m-p/86312#M637</guid>
      <dc:creator>pallis</dc:creator>
      <dc:date>2013-09-19T05:55:47Z</dc:date>
    </item>
  </channel>
</rss>

