<?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: PROC SORT NODUP in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-SORT-NODUP/m-p/360551#M274672</link>
    <description>&lt;P&gt;&lt;EM&gt;Exactly!&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 22 May 2017 20:24:25 GMT</pubDate>
    <dc:creator>SASPhile</dc:creator>
    <dc:date>2017-05-22T20:24:25Z</dc:date>
    <item>
      <title>PROC SORT NODUP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SORT-NODUP/m-p/360548#M274670</link>
      <description>&lt;P&gt;&lt;EM&gt;i have datasets that have 30 columns. I would like clean up datasets by removing dulplicates using &amp;nbsp;_all_ and redirect the duplicate records to another dataset. &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;proc sort data=have nodupkey out=_duprecs;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;by _all_;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;this code doesnt seem to do what I want.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;any help on this ?&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 20:13:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SORT-NODUP/m-p/360548#M274670</guid>
      <dc:creator>SASPhile</dc:creator>
      <dc:date>2017-05-22T20:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SORT NODUP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SORT-NODUP/m-p/360550#M274671</link>
      <description>&lt;P&gt;Is the below what you are trying to do?:&lt;/P&gt;
&lt;PRE&gt;data class (drop=i);
  set sashelp.class;
  do i=1 to 5;
    output;
  end;
run;

proc sort data=class nodupkey out=dups_removed dupout=_duprecs;
  by _all_;
run;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 20:19:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SORT-NODUP/m-p/360550#M274671</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-05-22T20:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SORT NODUP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SORT-NODUP/m-p/360551#M274672</link>
      <description>&lt;P&gt;&lt;EM&gt;Exactly!&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 20:24:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SORT-NODUP/m-p/360551#M274672</guid>
      <dc:creator>SASPhile</dc:creator>
      <dc:date>2017-05-22T20:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SORT NODUP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SORT-NODUP/m-p/360571#M274673</link>
      <description>&lt;P&gt;Please mark the question answered.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 21:50:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SORT-NODUP/m-p/360571#M274673</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-05-22T21:50:55Z</dc:date>
    </item>
  </channel>
</rss>

