<?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: Issue with secondary/complementary suppression in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963895#M375470</link>
    <description>&lt;P&gt;Unfortunately the updated code doesn't work. I think the issue is that the code is suppressing the next value, when what it needs to do is suppress the next &lt;EM&gt;lowest&lt;/EM&gt; count_supp value within the group and also if there are already 2 suppressed (or missing = .) values within the group, then it should not do any further suppression.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Apr 2025 14:39:29 GMT</pubDate>
    <dc:creator>ciaohermosa</dc:creator>
    <dc:date>2025-04-09T14:39:29Z</dc:date>
    <item>
      <title>Issue with secondary/complementary suppression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963794#M375422</link>
      <description>&lt;P&gt;I have a dataset with variables for year, city, indicator, and indicator_options. I have aggregated them together to get the count of all those for indicator_options within the indicator, city and year. I am trying to suppress data that is between 1-5 and then also considering secondary/complementary suppression so that if there is only one missing value, the next lowest value is suppressed. I have been able to do the first round of suppression but am getting stuck with the secondary suppression.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I asked ChatGPT, which gave me a pretty good solution:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;DATA trends;
    SET trends;
    BY options indicator city year;

    /* Step 1: Initialize variables for tracking */
    RETAIN missing_count next_min_value;

    /* Initialize for the first record in each group */
    IF first.year THEN DO;
        missing_count = 0;
        next_min_value = .;
    END;

    /* Step 2: Count the missing values in the group */
    IF count_supp = . THEN missing_count + 1;

    /* Step 3: Find the next lowest non-missing value (next smallest value) */
    IF count_supp NE . THEN DO;
        IF next_min_value = . OR count_supp &amp;lt; next_min_value THEN next_min_value = count_supp;
    END;

    /* Step 4: Modify the next smallest non-missing value if exactly one missing value exists in the group */
    IF last.year AND missing_count = 1 THEN DO;
        IF count_supp = next_min_value THEN count_supp = .; /* Set the next smallest non-missing value to missing */
    END;

    /* Step 5: Output the modified rows */
    count_supp_new = count_supp; /* Create the new column for modified values */
    OUTPUT;

    /* Drop temporary variables */
    DROP missing_count next_min_value;
RUN;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, the problem arises with Step 4 which seems to just be looking at the last row, not the next lowest value within the group. I can't figure out how to modify the code so that it considers the whole group.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the output with the code:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;year&lt;/TD&gt;&lt;TD&gt;city&lt;/TD&gt;&lt;TD&gt;indicator&lt;/TD&gt;&lt;TD&gt;options&lt;/TD&gt;&lt;TD&gt;count&lt;/TD&gt;&lt;TD&gt;count_supp&lt;/TD&gt;&lt;TD&gt;count_supp_new&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2017&lt;/TD&gt;&lt;TD&gt;Paris&lt;/TD&gt;&lt;TD&gt;job title&lt;/TD&gt;&lt;TD&gt;Consultant&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2019&lt;/TD&gt;&lt;TD&gt;Paris&lt;/TD&gt;&lt;TD&gt;job title&lt;/TD&gt;&lt;TD&gt;Consultant&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2021&lt;/TD&gt;&lt;TD&gt;Paris&lt;/TD&gt;&lt;TD&gt;job title&lt;/TD&gt;&lt;TD&gt;Consultant&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;TD&gt;Paris&lt;/TD&gt;&lt;TD&gt;job title&lt;/TD&gt;&lt;TD&gt;Consultant&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what it should look like with the next lowest value marked as missing/suppressed.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;year&lt;/TD&gt;&lt;TD&gt;city&lt;/TD&gt;&lt;TD&gt;indicator&lt;/TD&gt;&lt;TD&gt;options&lt;/TD&gt;&lt;TD&gt;count&lt;/TD&gt;&lt;TD&gt;count_supp&lt;/TD&gt;&lt;TD&gt;count_supp_new&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2017&lt;/TD&gt;&lt;TD&gt;Paris&lt;/TD&gt;&lt;TD&gt;job title&lt;/TD&gt;&lt;TD&gt;Consultant&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2019&lt;/TD&gt;&lt;TD&gt;Paris&lt;/TD&gt;&lt;TD&gt;job title&lt;/TD&gt;&lt;TD&gt;Consultant&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2021&lt;/TD&gt;&lt;TD&gt;Paris&lt;/TD&gt;&lt;TD&gt;job title&lt;/TD&gt;&lt;TD&gt;Consultant&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;TD&gt;Paris&lt;/TD&gt;&lt;TD&gt;job title&lt;/TD&gt;&lt;TD&gt;Consultant&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 08 Apr 2025 22:04:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963794#M375422</guid>
      <dc:creator>ciaohermosa</dc:creator>
      <dc:date>2025-04-08T22:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with secondary/complementary suppression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963796#M375423</link>
      <description>&lt;P&gt;I'm not sure if your data are more complicated than what you've shown here, but if not, then this seems to work - suppresses counts &amp;lt;5 and will suppress the next largest if the number suppressed has not reached two yet:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile cards dsd truncover firstobs=1 dlm='09'x;
length year 3 city indicator options $30 count 3;
input year city indicator options count;
cards;
2017	Paris	job title	Consultant	8
2019	Paris	job title	Consultant	6
2021	Paris	job title	Consultant	4
2023	Paris	job title	Consultant	8
;
run;

data have;
length srt 3;
set have;
srt=_N_;
run;

proc sort data=have; by city indicator options count; run;

data want;
set have;
by city indicator options;
length nsupp supp_count 3;
if first.options then nsupp=0;
supp_count=count;
if count&amp;lt;5 or nsupp=1 then do;
	supp_count=.;
	nsupp+1;
end;
drop nsupp;
run;

proc sort data=want; by srt; run;

proc print data=want; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="quickbluefish_0-1744151009732.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/106071iC5DE16615811BC73/image-size/medium?v=v2&amp;amp;px=400" role="button" title="quickbluefish_0-1744151009732.png" alt="quickbluefish_0-1744151009732.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;...would definitely test thoroughly, though.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2025 22:28:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963796#M375423</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-04-08T22:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with secondary/complementary suppression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963885#M375463</link>
      <description>&lt;P&gt;Thank you so much for responding! This is really helpful and works for the case I provided and several others.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes my data is more complex/larger than the example I gave, but was just showing a snippet. It looks like your code worked for several scenarios, but I found an issue in one setting - see below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the output:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;year&lt;/TD&gt;&lt;TD&gt;city&lt;/TD&gt;&lt;TD&gt;indicator&lt;/TD&gt;&lt;TD&gt;indicator_options&lt;/TD&gt;&lt;TD&gt;count&lt;/TD&gt;&lt;TD&gt;count_supp&lt;/TD&gt;&lt;TD&gt;count_supp_new&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2017&lt;/TD&gt;&lt;TD&gt;London&lt;/TD&gt;&lt;TD&gt;job site&lt;/TD&gt;&lt;TD&gt;Building A&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2019&lt;/TD&gt;&lt;TD&gt;London&lt;/TD&gt;&lt;TD&gt;job site&lt;/TD&gt;&lt;TD&gt;Building A&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2021&lt;/TD&gt;&lt;TD&gt;London&lt;/TD&gt;&lt;TD&gt;job site&lt;/TD&gt;&lt;TD&gt;Building A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;TD&gt;London&lt;/TD&gt;&lt;TD&gt;job site&lt;/TD&gt;&lt;TD&gt;Building A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But this is what I should get- any ideas on how to adjust the code to make this work?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;year&lt;/TD&gt;&lt;TD&gt;city&lt;/TD&gt;&lt;TD&gt;indicator&lt;/TD&gt;&lt;TD&gt;indicator_options&lt;/TD&gt;&lt;TD&gt;count&lt;/TD&gt;&lt;TD&gt;count_supp&lt;/TD&gt;&lt;TD&gt;count_supp_new&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2017&lt;/TD&gt;&lt;TD&gt;London&lt;/TD&gt;&lt;TD&gt;job site&lt;/TD&gt;&lt;TD&gt;Building A&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2019&lt;/TD&gt;&lt;TD&gt;London&lt;/TD&gt;&lt;TD&gt;job site&lt;/TD&gt;&lt;TD&gt;Building A&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2021&lt;/TD&gt;&lt;TD&gt;London&lt;/TD&gt;&lt;TD&gt;job site&lt;/TD&gt;&lt;TD&gt;Building A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;TD&gt;London&lt;/TD&gt;&lt;TD&gt;job site&lt;/TD&gt;&lt;TD&gt;Building A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 09 Apr 2025 13:56:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963885#M375463</guid>
      <dc:creator>ciaohermosa</dc:creator>
      <dc:date>2025-04-09T13:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with secondary/complementary suppression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963888#M375465</link>
      <description>I might not be understanding.  What's the difference between 'count_supp' and 'count_supp_new'?  Is the former supposed to contain everything &amp;gt;=5 and the latter supposed to contain everything &amp;gt;=5 that was also not removed for complementary reasons?</description>
      <pubDate>Wed, 09 Apr 2025 14:09:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963888#M375465</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-04-09T14:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with secondary/complementary suppression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963889#M375466</link>
      <description>&lt;P&gt;Here's a modified version that does that:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile cards dsd truncover firstobs=1 dlm='09'x;
length year 3 city indicator options $30 count 3;
input year city indicator options count;
cards;
2017	Paris	job title	Consultant	8
2019	Paris	job title	Consultant	6
2021	Paris	job title	Consultant	4
2023	Paris	job title	Consultant	8
;
run;

data have;
length srt 3;
set have;
srt=_N_;
run;

proc sort data=have; by city indicator options count; run;

data want;
set have;
by city indicator options;
length nsupp count_supp count_supp_new 3;
if first.options then nsupp=0;
count_supp=count;
count_supp_new=count;
if count&amp;lt;5 or nsupp=1 then do;
	count_supp_new=.;
	if count&amp;lt;5 then count_supp=.;
	nsupp+1;
end;
drop nsupp;
run;

proc sort data=want; by srt; run;

proc print data=want; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 Apr 2025 14:14:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963889#M375466</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-04-09T14:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with secondary/complementary suppression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963891#M375467</link>
      <description>&lt;P&gt;Count is the original count of the category. count_supp is the the results after the first round of suppression (marking everything &amp;lt;5 as suppressed - easy). Count_supp_new is for the second round, which would then check if there is one value &amp;lt;5 or one value that is already marked as suppressed, it suppresses the next lowest value within the group. It just separates it out into separate columns so I can view the changes for each step to check the results. The only outcome needs to be one final suppressed column.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As I am writing this, I think your code does that. What I need instead I am realizing is a way to not run the secondary suppression if there are already 2 suppressed values present in count_supp. The goal overall of the secondary suppression is that someone looking at the data can't go back and figure out what the one suppressed number is by doing simple math. So for example, if the counts are 2, 10, 11, and 12, and only 2 is suppressed, you can figure out that 2 is the missing number because you know the sum is 35. What I need to do is suppress 2 and 10. But in the case where the values are 2, 3, 11, and 12, both 2 and 3 are suppressed in the first round of suppression, it doesn't matter that I know the sum is 28 because I don't know how the remaining 5 that aren't showing are divided between the 2 suppressed categories.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that makes sense...sorry for the confusion!&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2025 14:25:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963891#M375467</guid>
      <dc:creator>ciaohermosa</dc:creator>
      <dc:date>2025-04-09T14:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with secondary/complementary suppression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963893#M375469</link>
      <description>Yes, does the updated code do what you're looking for?  I'm very familiar with the concept as it's part of my daily work.  It can definitely get a lot trickier when the table you create with these data also have both row and column totals in addition to the individual counts.</description>
      <pubDate>Wed, 09 Apr 2025 14:33:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963893#M375469</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-04-09T14:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with secondary/complementary suppression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963895#M375470</link>
      <description>&lt;P&gt;Unfortunately the updated code doesn't work. I think the issue is that the code is suppressing the next value, when what it needs to do is suppress the next &lt;EM&gt;lowest&lt;/EM&gt; count_supp value within the group and also if there are already 2 suppressed (or missing = .) values within the group, then it should not do any further suppression.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2025 14:39:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963895#M375470</guid>
      <dc:creator>ciaohermosa</dc:creator>
      <dc:date>2025-04-09T14:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with secondary/complementary suppression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963896#M375471</link>
      <description>OK, what are the raw numbers for which it's not working?  It seems to be doing what you're asking for in both cases above (with raw counts of [3, 9, 2, 2] or [8,6,4,8]).</description>
      <pubDate>Wed, 09 Apr 2025 14:44:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963896#M375471</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-04-09T14:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with secondary/complementary suppression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963985#M375485</link>
      <description>&lt;P&gt;This worked! Sorry there was an issue with the way I was sorting the real data, but once that was corrected the code functioned. Thanks so much for the time you put into this and the quick response!&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2025 13:00:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963985#M375485</guid>
      <dc:creator>ciaohermosa</dc:creator>
      <dc:date>2025-04-10T13:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with secondary/complementary suppression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963987#M375486</link>
      <description>&lt;P&gt;Glad that helped.&amp;nbsp; I have always had trouble figuring out a way to automate this process, as I said, for tables that involve row and column totals -- see below for an example.&amp;nbsp; Here, we've suppressed the count that's below the threshold (4) and the next smallest one (6) to mask it, so the row total for Paris can't be used to back-calculate the 4.&amp;nbsp; However, because of the column totals, we can currently back calculate either of the suppressed numbers, which leaves the question of which numbers to suppress in those columns, which themselves, in turn, need to be masked so that you can't back calculate from those row totals.&amp;nbsp; It gets pretty confusing...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="quickbluefish_0-1744290876454.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/106124iC46711F99DAC9B7A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="quickbluefish_0-1744290876454.png" alt="quickbluefish_0-1744290876454.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2025 13:15:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-secondary-complementary-suppression/m-p/963987#M375486</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-04-10T13:15:31Z</dc:date>
    </item>
  </channel>
</rss>

