<?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: Frequencies under 10 in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Frequencies-under-10/m-p/613544#M18437</link>
    <description>&lt;P&gt;Do you mean you want these frequencies to APPEAR as blank in a report? Do you mean you want to not use these cells in an analysis? Could you provide a few more details and show us a portion of your data?&lt;/P&gt;</description>
    <pubDate>Mon, 23 Dec 2019 14:55:45 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2019-12-23T14:55:45Z</dc:date>
    <item>
      <title>Frequencies under 10</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequencies-under-10/m-p/613538#M18436</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to know how to change all frequencies that are strictly under 10 (0-9) to a blank cell in the rounded data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2019 14:48:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequencies-under-10/m-p/613538#M18436</guid>
      <dc:creator>sherry88</dc:creator>
      <dc:date>2019-12-23T14:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Frequencies under 10</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequencies-under-10/m-p/613544#M18437</link>
      <description>&lt;P&gt;Do you mean you want these frequencies to APPEAR as blank in a report? Do you mean you want to not use these cells in an analysis? Could you provide a few more details and show us a portion of your data?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2019 14:55:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequencies-under-10/m-p/613544#M18437</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-12-23T14:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: Frequencies under 10</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequencies-under-10/m-p/613599#M18449</link>
      <description>&lt;P&gt;I would like these frequencies to appear blank in the report&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please see more information attached&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2019 18:24:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequencies-under-10/m-p/613599#M18449</guid>
      <dc:creator>sherry88</dc:creator>
      <dc:date>2019-12-23T18:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Frequencies under 10</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequencies-under-10/m-p/613630#M18456</link>
      <description>&lt;P&gt;A custom format applied to the statistic in the case of proc tabulate.&lt;/P&gt;
&lt;P&gt;Perhaps&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc format library=work;
   value  myblank
   0 - 9 =' '
   ;
run;

proc tabulate data =  TITLE;
class CNS_DV 
	  URBAN_RURAL 
	  INDV_CLT_AGE_2018
	  INDV_CLT_GNDR_CD
 	  CLT_PREF_LANG_CD;
format URBAN_RURAL $URB_RUR.
	   INDV_CLT_AGE_2018 AGE_GROUPS.
	   INDV_CLT_GNDR_CD $CLT_GENDER.
 	   CLT_PREF_LANG_CD $LANG.;	
table (CNS_DV = 'Subdivision' * URBAN_RURAL  = 'Urban/Rural'), 
      (INDV_CLT_AGE_2018 = 'Age Groups' * INDV_CLT_GNDR_CD = '' * CLT_PREF_LANG_CD = '') 
        * (N=''&lt;FONT color="#ff00ff"&gt;&lt;STRONG&gt;*f=myblank.&lt;/STRONG&gt;&lt;/FONT&gt;)
		  ;
run;
&lt;/PRE&gt;
&lt;P&gt;Other procedures would require different syntax to apply the format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2019 21:16:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequencies-under-10/m-p/613630#M18456</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-12-23T21:16:51Z</dc:date>
    </item>
  </channel>
</rss>

