<?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: Removing periods from output table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Removing-periods-from-output-table/m-p/846916#M334816</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options missing=0;
proc format;                           
   picture mypct (round) low-high='009.99%';   
run; 

proc tabulate data=sashelp.class;
   class age sex;
   var weight height; 
   table age, sex*(weight height)*(pctsum*f=mypct.);
run;
options missing=.;&amp;nbsp;/* This&amp;nbsp;step&amp;nbsp;is&amp;nbsp;optional,&amp;nbsp;it&amp;nbsp;re-sets&amp;nbsp;the&amp;nbsp;default&amp;nbsp;appearance&amp;nbsp;of&amp;nbsp;missing&amp;nbsp;values&amp;nbsp;*/&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Nov 2022 20:39:47 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2022-11-29T20:39:47Z</dc:date>
    <item>
      <title>Removing periods from output table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-periods-from-output-table/m-p/846912#M334814</link>
      <description>&lt;P&gt;I'm using code similar to the following.&amp;nbsp; &amp;nbsp;However, my output is printing periods in some cells with missing values.&amp;nbsp; &amp;nbsp;How can I change the format so those cells displays either "0" or are blank?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;proc format;                           
   picture mypct (round) low-high='009.99%';   
run; 

proc tabulate data=sashelp.class;
   class age sex;
   var weight height; 
   table age, sex*(weight height)*(pctsum*f=mypct.);
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 20:19:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-periods-from-output-table/m-p/846912#M334814</guid>
      <dc:creator>Batman</dc:creator>
      <dc:date>2022-11-29T20:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: Removing periods from output table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-periods-from-output-table/m-p/846916#M334816</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options missing=0;
proc format;                           
   picture mypct (round) low-high='009.99%';   
run; 

proc tabulate data=sashelp.class;
   class age sex;
   var weight height; 
   table age, sex*(weight height)*(pctsum*f=mypct.);
run;
options missing=.;&amp;nbsp;/* This&amp;nbsp;step&amp;nbsp;is&amp;nbsp;optional,&amp;nbsp;it&amp;nbsp;re-sets&amp;nbsp;the&amp;nbsp;default&amp;nbsp;appearance&amp;nbsp;of&amp;nbsp;missing&amp;nbsp;values&amp;nbsp;*/&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 20:39:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-periods-from-output-table/m-p/846916#M334816</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-11-29T20:39:47Z</dc:date>
    </item>
  </channel>
</rss>

