<?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: question about selectively removing duplicates in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432927#M107271</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;&amp;nbsp;Worth noting as it is the first time I have this feedback after reporting countless issues:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The developer will:&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Look at changing the wording of the Notes generated with the various options in PROC SORT &amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Work with Publications to ensure that the documentation is updated to clarify everything related to the options used and the effect they have on each other&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;So it seems this one will not be shelved! Yay! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jan 2018 21:55:34 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2018-01-31T21:55:34Z</dc:date>
    <item>
      <title>question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429408#M106068</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using SAS 9.4 edition. I'm trying to selectively remove duplicate observations but I'm not sure how to tell SAS to keep certain rows. I'd like to keep the row with more&amp;nbsp;data in the state field, for example. My code is below and it's not working. Thanks for the help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CASE_ID&amp;nbsp; &amp;nbsp; State&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MA&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=casemergedata out=newdata nodupkey; by CASE_ID; run;
proc freq data=newdata; tables CASE_CONTROL; run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 21:03:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429408#M106068</guid>
      <dc:creator>lmyers2</dc:creator>
      <dc:date>2018-01-20T21:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429409#M106069</link>
      <description>&lt;P&gt;Are you only looking at one variable?&lt;/P&gt;
&lt;P&gt;In that case just also sort by descending STATE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 21:24:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429409#M106069</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-01-20T21:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429410#M106070</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input CASE_ID State$;
infile datalines missover;
datalines;
1 MA   
1  
; 

proc sort data=have out=want nodupkey;
   by descending CASE_ID;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 20 Jan 2018 21:29:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429410#M106070</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-01-20T21:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429419#M106074</link>
      <description>&lt;P&gt;The way I like to do things like that is to use two sorts. First one, to order the records so that the record with the maximum value of state comes first within each id. i.e.:&lt;/P&gt;
&lt;PRE&gt;proc sort data=casemergedata out=newdata;
  by CASE_ID descending state;
run;
&lt;/PRE&gt;
&lt;P&gt;Then a second sort to get rid of the duplicate caseids. i.e.:&lt;/P&gt;
&lt;PRE&gt;proc sort data=newdata nodupkey;
  by CASE_ID;
run;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 22:54:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429419#M106074</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2018-01-20T22:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429420#M106075</link>
      <description>You can add the presorted option to the second sort to speed things up. &lt;BR /&gt;</description>
      <pubDate>Sat, 20 Jan 2018 23:06:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429420#M106075</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-01-20T23:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429427#M106078</link>
      <description>&lt;P&gt;Here's a version that works when you have many variables, not just 2 or 3:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sort data=have;&lt;/P&gt;
&lt;P&gt;by case_id state;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;update have (obs=0) have;&lt;/P&gt;
&lt;P&gt;by case_id;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It also works when you have many observations per CASE_ID.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jan 2018 01:44:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429427#M106078</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-01-21T01:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429429#M106079</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;I really liked your &lt;EM&gt;presorted&lt;/EM&gt; proposal. Unfortunately this option doesn't appear to have an effect if combined with &lt;EM&gt;nodupkey&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;28         proc sort data=sashelp.class out=work.class(sortedby=age);
29           by age name;
30         run;
         
33         proc sort data=work.class out=test1 &lt;FONT color="#800000"&gt;&lt;STRONG&gt;presorted nodupkey&lt;/STRONG&gt;&lt;/FONT&gt;;
34           by age;
35         run;

&lt;FONT color="#800000"&gt;&lt;STRONG&gt;NOTE: Input data set is not in sorted order.&lt;/STRONG&gt;&lt;/FONT&gt;
NOTE: ...
         
37         proc sort data=work.class out=test1 &lt;FONT color="#800000"&gt;&lt;STRONG&gt;presorted&lt;/STRONG&gt;&lt;/FONT&gt;;
38           by age;
39         run;
&lt;STRONG&gt;&lt;FONT color="#800000"&gt;NOTE: Sort order of input data set has been verified.&lt;/FONT&gt;&lt;/STRONG&gt;
NOTE: Input data set is already sorted; it has been copied to the output data set.
NOTE: ...&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jan 2018 01:55:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429429#M106079</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-01-21T01:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429442#M106081</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt;, you may end up with unwanted results with UPDATE&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input case_id state1 $ state2 $;
datalines;
1 A .
1 . .
1 . B
;

proc sort data=have;
by case_id state1 state2;
run;

data want;
update have (obs=0) have;
by case_id;
run;

proc print; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;                         Obs    case_id    state1    state2

                          1        1         A         B
&lt;/PRE&gt;</description>
      <pubDate>Sun, 21 Jan 2018 05:25:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429442#M106081</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2018-01-21T05:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429466#M106087</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462"&gt;@PGStats&lt;/a&gt;, you're right about the possibility of complications.&amp;nbsp; But it's difficult to tell what is really necessary here.&amp;nbsp; The original post is likely to be a simplification of the actual scenario so I wanted to make sure the UPDATE program was at least considered.&amp;nbsp; The example that you posted might actually be a desirable result ... it's up to the original poster to decide.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that I had the data set sorted by STATE so that non-missing-values the non-missing STATE observation would prevail if there is a conflict.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jan 2018 14:35:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429466#M106087</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-01-21T14:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429490#M106091</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is no reason&amp;nbsp;&lt;FONT face="courier new,courier"&gt;presorted&lt;/FONT&gt;&amp;nbsp; should not work with &lt;FONT face="courier new,courier"&gt;nodupkey.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Reporting this as a bug now.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jan 2018 20:24:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/429490#M106091</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-01-21T20:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432003#M106920</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;&amp;nbsp;Update: This is not a bug, it is a planned shortcoming.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Option &lt;EM&gt;presorted&lt;/EM&gt; is only there to set flags (that's a very expensive flag when you copy a whole table to set it!).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If any processing is required (such as removing duplicates) this option cannot be used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What a wasted opportunity!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is all described &lt;A href="http://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p0guut2xk8yz2yn17ibn9nwcyx8v.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#p1p2lnl8pibjtbn1qgwi8v108w2x" target="_self"&gt;here&lt;/A&gt; is its flawed glory.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All the more reason to avoid such wastage by creating &lt;A href="https://communities.sas.com/t5/SASware-Ballot-Ideas/create-a-VALIDATESORT-data-set-option-to-validate-the-sort-order/idi-p/288038" target="_self"&gt;a new data step option&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have asked for the log NOTE and the &lt;A href="http://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p02bhn81rn4u64n1b6l00ftdnxge.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#p1vkld5nbc46lgn166zqz7k87aka" target="_self"&gt;presorted&lt;/A&gt; documentation to be corrected.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 22:56:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432003#M106920</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-01-29T22:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432006#M106921</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;: Thanks for looking into it! I suppose the explanation made sense to somebody (at SAS) but I, for one, don't understand what benefit they gained by excluding PRESORTED when NODUPKEY is used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 23:08:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432006#M106921</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2018-01-29T23:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432014#M106924</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;&amp;nbsp;This option only helps to set metadata flags. So it's not really about excluding other options.&lt;/P&gt;
&lt;P&gt;If you&amp;nbsp;run&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=SASHELP.CLASS out=CLASS presorted nodupkey danish;
  by NAME;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;then option PRESORTED will trigger the validation of the NODUPKEY and DANISH options, and add the&amp;nbsp;corresponding metadata.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this case PROC CONTENTS shows the updated values for flags&amp;nbsp;SORTED,&amp;nbsp;&lt;SPAN&gt;NODUPKEY and COLLATE.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;That's all PRESORTED does: set the metadata. This option excludes any processing. What a wasted opportunity.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 01:07:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432014#M106924</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-01-30T01:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432021#M106926</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;: Not totally true. Take a look at the log after running the following .. particularly the log for the last two sorts.&lt;/P&gt;
&lt;P&gt;The presorted option cuts the sort down by 2/3rds of the time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data have;
  set sashelp.class;
  do i=1 to 100000;
    output;
  end;
run;

proc sort data=have;
  by sex;
run;

data need;
  set have;
run;
 
proc sort data=need out=want1;
  by sex;
run;

proc sort data=need out=want2 presorted;
  by sex;
run;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 01:24:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432021#M106926</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2018-01-30T01:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432034#M106930</link>
      <description>&lt;P&gt;Yes PRESORTED avoids sorting, and just copies the table instead, thereby saving time.&lt;/P&gt;
&lt;P&gt;But that's only true if no other processing,&amp;nbsp;such as removing duplicates, is required.&lt;/P&gt;
&lt;P&gt;That's where the wasted opportunity is: why not allow that removal? A simple sequential&amp;nbsp;read would then suffice, instead of sorting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that PRESORTED is even more efficient if you don't create another&amp;nbsp;table.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=HAVE presorted; by NAME; run;

data _null_; set HAVE; by NAME; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Both these steps take about the same time, as no data is copied and the data set is just read sequentially.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not saying this is a useless option, quite the contrary.&lt;/P&gt;
&lt;P&gt;I am saying it could easily have been more useful.&lt;/P&gt;
&lt;P&gt;As in the case of this thread's question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 02:05:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432034#M106930</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-01-30T02:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432037#M106931</link>
      <description>&lt;P&gt;Then we totally agree!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 02:24:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432037#M106931</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2018-01-30T02:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432927#M107271</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;&amp;nbsp;Worth noting as it is the first time I have this feedback after reporting countless issues:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The developer will:&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Look at changing the wording of the Notes generated with the various options in PROC SORT &amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Work with Publications to ensure that the documentation is updated to clarify everything related to the options used and the effect they have on each other&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;So it seems this one will not be shelved! Yay! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2018 21:55:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432927#M107271</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-01-31T21:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432931#M107272</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;: What's the saying?: if you don't succeed the first time, try, try again?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hopefully, in trying to explain it, they'll realize that the option should simply perform as a typical user would expect!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2018 22:21:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432931#M107272</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2018-01-31T22:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: question about selectively removing duplicates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432940#M107275</link>
      <description>&lt;P&gt;That's over-optimistic I reckon. An updated message and documentation is all we'll get.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2018 23:17:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/question-about-selectively-removing-duplicates/m-p/432940#M107275</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-01-31T23:17:51Z</dc:date>
    </item>
  </channel>
</rss>

