<?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: Suppressing value output proc tabulate lower than a specific value in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899228#M355434</link>
    <description>&lt;P&gt;I agree with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15475"&gt;@andreas_lds&lt;/a&gt;&amp;nbsp;. Take the output data set from PROC TABULATE (which you have named WANT) and manipulate it in a DATA step to create text strings that hide the information, as you explained in your original post.&lt;/P&gt;</description>
    <pubDate>Thu, 19 Oct 2023 12:34:03 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2023-10-19T12:34:03Z</dc:date>
    <item>
      <title>Suppressing value output proc tabulate lower than a specific value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899200#M355419</link>
      <description>&lt;P&gt;I have an output proc tabulate SAS (in attached an example), my customers want that I change all values lower than a specific,value in my case all value lower than 3 to frequency with a generic symbol(e.s '*') also values sum and average.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="ui-provider bcm bcn bco bcp bcq bcr bcs bct bcu bcv bcw bcx bcy bcz bda bdb bdc bdd bde bdf bdg bdh bdi bdj bdk bdl bdm bdn bdo bdp bdq bdr bds bdt bdu"&gt;In addition, if there is only one asterisk-marked value in the column (before the subtotal), you must also add an asterisk to the lowest value after 3 (excluding 0). Finally, if the column contains many values equal to 1 and the total can be attributed to them, you must also mask another value in that case; specifically, the lowest one.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Someone can help me?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 08:12:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899200#M355419</guid>
      <dc:creator>dipand</dc:creator>
      <dc:date>2023-10-19T08:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Suppressing value output proc tabulate lower than a specific value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899207#M355423</link>
      <description>&lt;P&gt;Many of us refuse to download and open Excel (or other microsoft office) files because they are a security threat. Please show us a screen capture. Please use the "Insert Photos" icon to include your screen capture in your reply; do not attach files.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also please show us the code that produced this output. Please paste the code as text into the box that opens when you click on the "little running man" icon. Do not attach files.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 10:03:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899207#M355423</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-10-19T10:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Suppressing value output proc tabulate lower than a specific value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899212#M355424</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;this is an example :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dipand_0-1697710534883.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/88949i1327BB2063005774/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dipand_0-1697710534883.png" alt="dipand_0-1697710534883.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 10:16:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899212#M355424</guid>
      <dc:creator>dipand</dc:creator>
      <dc:date>2023-10-19T10:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: Suppressing value output proc tabulate lower than a specific value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899213#M355425</link>
      <description>&lt;P&gt;Applying secrecy rules in proc tabulate is hardly possible. You will have to post-process the results with a data step, setting all values you want to be replaced to missing (or a special missing value). In another output proc you use a custom format displaying the special missing value as *.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 10:33:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899213#M355425</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2023-10-19T10:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Suppressing value output proc tabulate lower than a specific value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899215#M355426</link>
      <description>&lt;P&gt;&amp;nbsp;Un example:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dipand_0-1697711820414.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/88950i63628E2A896957D0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dipand_0-1697711820414.png" alt="dipand_0-1697711820414.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How it's is possible to realize this result in SAS?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 10:37:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899215#M355426</guid>
      <dc:creator>dipand</dc:creator>
      <dc:date>2023-10-19T10:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Suppressing value output proc tabulate lower than a specific value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899220#M355430</link>
      <description>&lt;P&gt;Repeating:&amp;nbsp;&lt;SPAN&gt;Also please show us the code that produced this output. Please paste the code as text into the box that opens when you click on the "little running man" icon. Do not attach files.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 11:41:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899220#M355430</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-10-19T11:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Suppressing value output proc tabulate lower than a specific value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899223#M355432</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data =Display_UPF  out=want format = commax20.  MISSING  NOSEPS;
Class cod_sez reg / preloadfmt order=formatted; 
var 
	RU_05_01_L1_6939
	RU_05_02_L1_6940
	RU_05_03_L1_6938
;

 

table (cod_sez="" *(reg="" all="Totale"))all="Totale" , n='Numero soggetti' (
    RU_05_01_L1_6939
	RU_05_02_L1_6940
	RU_05_03_L1_6938

)*(N  SUM  MEAN*f=commax20.2) / MISSTEXT='0' PRINTMISS Box="CODICE SEZIONE  REGIONE ";
format cod_sez  &amp;amp;formato1.   reg  &amp;amp;formato2. ;
title "DISTRIBUZIONE PER SEZIONE ATTIVITA' E REGIONE DEI CREDITI D'IMPOSTA";
footnote "Importi espressi in euro";
keylabel N="Frequenza" SUM = "Ammontare" Mean="Media"; 
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Oct 2023 11:57:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899223#M355432</guid>
      <dc:creator>dipand</dc:creator>
      <dc:date>2023-10-19T11:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Suppressing value output proc tabulate lower than a specific value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899228#M355434</link>
      <description>&lt;P&gt;I agree with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15475"&gt;@andreas_lds&lt;/a&gt;&amp;nbsp;. Take the output data set from PROC TABULATE (which you have named WANT) and manipulate it in a DATA step to create text strings that hide the information, as you explained in your original post.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 12:34:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-value-output-proc-tabulate-lower-than-a-specific/m-p/899228#M355434</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-10-19T12:34:03Z</dc:date>
    </item>
  </channel>
</rss>

