<?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: How can we keep the most recent data with proc sort? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785309#M250607</link>
    <description>&lt;P&gt;Character dates in SAS are just text strings so they will sort in alphabetical order. You need proper SAS dates which are numeric variables with SAS date formats applied if you want your data to sort correctly in date order.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide a sample of your data if you want to confirm your date selection rules. What happens with duplicate dates? Which date record will you choose?&lt;/P&gt;</description>
    <pubDate>Fri, 10 Dec 2021 05:53:45 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2021-12-10T05:53:45Z</dc:date>
    <item>
      <title>How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785305#M250604</link>
      <description>&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;I have a project that I need the most recent date. How can I use proc sort nodupkey take care of this matter?&lt;/P&gt;
&lt;P&gt;What other approaches we have for keep only the most recent date?&lt;/P&gt;
&lt;P&gt;If our date to be character date, does proc sort sort our data?&lt;/P&gt;
&lt;P&gt;Your help is greatly appreciated.&lt;/P&gt;
&lt;P&gt;blue blue&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 04:42:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785305#M250604</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-12-10T04:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785309#M250607</link>
      <description>&lt;P&gt;Character dates in SAS are just text strings so they will sort in alphabetical order. You need proper SAS dates which are numeric variables with SAS date formats applied if you want your data to sort correctly in date order.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide a sample of your data if you want to confirm your date selection rules. What happens with duplicate dates? Which date record will you choose?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 05:53:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785309#M250607</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-12-10T05:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785312#M250610</link>
      <description>&lt;P&gt;The first step, though, is to fix the text date to a number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can use proc sort with nodupkey and last. variable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;/* sample data  */
  do id=5 to 1 by -1;
    do i=20010 to 20000 by -1;
      dt=i+int(ranuni(i)*100);
      output;
    end;
  end;
  format dt yymmdd10.;
  drop i;
run;

proc sort data=have nodupkey;
  by id dt;
run;

data want;
  set have;
  by id dt;
  if last.id;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;Use proc sql&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  select * from have as a 
  where dt=(select MAX(dt) from have as b 
            WHERE a.id=b.id);
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 07:40:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785312#M250610</guid>
      <dc:creator>japelin</dc:creator>
      <dc:date>2021-12-10T07:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785317#M250614</link>
      <description>&lt;P&gt;Character dates are useless, you have to convert them first.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you you only want the date for later use, or the observation(s) with the latest date?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 07:31:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785317#M250614</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-10T07:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785323#M250618</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Character dates in SAS are just text strings so they will sort in alphabetical order. You need proper SAS dates which are numeric variables with SAS date formats applied if you want your data to sort correctly in date order.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide a sample of your data if you want to confirm your date selection rules. What happens with duplicate dates? Which date record will you choose?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;&amp;nbsp;I think you meant "calendar order" or "chronological order" as they will sort in alphabetical order which often does not match calendar order.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 08:06:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785323#M250618</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-12-10T08:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785337#M250623</link>
      <description>&lt;P&gt;Character "dates" in ISO8601 format would at least sort correctly, but (&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202329"&gt;@GN0001&lt;/a&gt;) they are still useless for any type of calculation.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 09:24:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785337#M250623</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-10T09:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785591#M250729</link>
      <description>Hello team member,&lt;BR /&gt;Can you please explain about this? In the code below, 20010 to 20000 are not dates!&lt;BR /&gt;data have;/* sample data  */&lt;BR /&gt;  do id=5 to 1 by -1;&lt;BR /&gt;    do i=20010 to 20000 by -1;&lt;BR /&gt;      dt=i+int(ranuni(i)*100);&lt;BR /&gt;      output;&lt;BR /&gt;    end;&lt;BR /&gt;  end;&lt;BR /&gt;  format dt yymmdd10.;&lt;BR /&gt;  drop i;&lt;BR /&gt;run;</description>
      <pubDate>Sat, 11 Dec 2021 20:05:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785591#M250729</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-12-11T20:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785592#M250730</link>
      <description>&lt;P&gt;Of course they are dates in SAS. Dates are counts of days, with 1960-01-01 as day zero. Do this for reference:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
date = today(),
put date=;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and look at the log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:12:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785592#M250730</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-11T20:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785593#M250731</link>
      <description>&lt;P&gt;Hello team member,&lt;/P&gt;
&lt;P&gt;This is my code:&lt;/P&gt;
&lt;PRE&gt;Data test1;
Input MemberID $ date1;
datalines
1 04/02/2021
1 04/03/2021
1 05/03/2019
;
Run;&lt;/PRE&gt;
&lt;P&gt;I want to use proc sort to keep one meberID with the max date. If I sort the data with proc sort with nodupkey, how can I get to the point that I can keep one memberId with Max Date?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let me know.&lt;/P&gt;
&lt;P&gt;Respectfully,&lt;/P&gt;
&lt;P&gt;blue blue&lt;/P&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:12:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785593#M250731</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-12-11T20:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785594#M250732</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202329"&gt;@GN0001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello team member,&lt;/P&gt;
&lt;P&gt;This is my code:&lt;/P&gt;
&lt;PRE&gt;Data test1;
Input MemberID $ date1;
datalines
1 04/02/2021
1 04/03/2021
1 05/03/2019
;
Run;&lt;/PRE&gt;
&lt;P&gt;I want to use proc sort to keep one meberID with the max date. If I sort the data with proc sort with nodupkey, how can I get to the point that I can keep one memberId with Max Date?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let me know.&lt;/P&gt;
&lt;P&gt;Respectfully,&lt;/P&gt;
&lt;P&gt;blue blue&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Run this code, inspect the log, and fix it, as a simple first lesson.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:15:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785594#M250732</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-11T20:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785596#M250734</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I need a unique observation with a max date?&lt;/P&gt;
&lt;P&gt;The date is already a number data type. I posted a dataline statement that shows date is a number.&amp;nbsp; I do understand the date as a character is useless.&lt;/P&gt;
&lt;P&gt;Respectfully,&lt;/P&gt;
&lt;P&gt;Blueblue&lt;/P&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:31:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785596#M250734</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-12-11T20:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785597#M250735</link>
      <description>&lt;P&gt;Sort by descending date, and keep the first observation in a data step.&lt;/P&gt;
&lt;P&gt;Or run a PROC SQL with&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;having date = max(date)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:37:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785597#M250735</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-11T20:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785598#M250736</link>
      <description>Hello,&lt;BR /&gt;Thanks for your posts. I will try it, but I don't know how my question is related to what you have posted. &lt;BR /&gt;My boss told me proc sort data with memberID and keep the most recent date. I don't know how proc sort with nodupkey can bring the results he wants. I am not very willing to ask him how.&lt;BR /&gt;Respectfully,&lt;BR /&gt;blueblue</description>
      <pubDate>Sat, 11 Dec 2021 20:37:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785598#M250736</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-12-11T20:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785599#M250737</link>
      <description>&lt;P&gt;Dear team member,&lt;/P&gt;
&lt;P&gt;Thanks for your post. Thanks for this approach. I can use proc sql to do get what I want. How about proc sort nodupkey approach?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;blueblue&lt;/P&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:39:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785599#M250737</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-12-11T20:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785600#M250738</link>
      <description>&lt;P&gt;SORT on its own can't give you the max value, you need a follow-up step that selects this observation.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:40:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785600#M250738</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-11T20:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785601#M250739</link>
      <description>Hello Kurt,&lt;BR /&gt;I think this works if I sort ascending by date, no dupkey. I need to make sure which observation SAS keeps after I sort it by ascending. &lt;BR /&gt;if I have:&lt;BR /&gt; 1 03/14/2021&lt;BR /&gt; 1 04/14/2021&lt;BR /&gt;1 08/09/2021&lt;BR /&gt;Then when I use proc sql no dupkey ascending, then I will get 08/09/2021, SAS doesn't remove the max date? I want to know how SAS processes the observations in proc sort nodupkey ascending.&lt;BR /&gt;Please advise me.&lt;BR /&gt;Regards,&lt;BR /&gt;bluebue</description>
      <pubDate>Sat, 11 Dec 2021 20:51:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785601#M250739</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-12-11T20:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785603#M250741</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202329"&gt;@GN0001&lt;/a&gt;&amp;nbsp;IF you would have posted sample data with the date variable containing a proper SAS date value then I assume the discussion here would have been much shorter/quicker.&lt;/P&gt;
&lt;P&gt;IF you've got a date variable that sorts properly then a double Proc Sort is one way to go.&lt;/P&gt;
&lt;P&gt;The first Proc Sort to order your data with the newest date per member id on top, the 2nd Proc Sort with a NODUPKEY to then pick the first row per member id (same that what a data step if first.member_id would do).&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input MemberID $ date1:ddmmyy10.;
  format date1 date9.;
  datalines;
1 04/02/2021
1 04/03/2021
1 05/03/2019
;

proc sort data=have out=want;
  by MemberID DESCENDING date1;
run;
proc sort nodupkey out=want;
  by MemberID;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 11:27:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785603#M250741</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2021-12-14T11:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785604#M250742</link>
      <description>&lt;P&gt;Using the double SORT may not work under certain circumstances (SPDE datasets, for example).&lt;/P&gt;
&lt;P&gt;After the ascending sort, do&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set have;
by id;
if last.id;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:18:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785604#M250742</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-12-11T22:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785606#M250744</link>
      <description>Hello Kurt, I found what I was looking for, so if it keeps the max in the first observation, this should work.&lt;BR /&gt;Thanks for your response.&lt;BR /&gt;By the way, I posted my data very first time I posted this question. &lt;BR /&gt;I truly appreciate your response. &lt;BR /&gt;Thanks, &lt;BR /&gt;Blue blue</description>
      <pubDate>Sat, 11 Dec 2021 23:17:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785606#M250744</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-12-11T23:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: How can we keep the most recent data with proc sort?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785607#M250745</link>
      <description>Sorry, please see my response to Kurt. &lt;BR /&gt;Can you please read&lt;BR /&gt;My response to Kurt. Did you see what Kurt had responded?&lt;BR /&gt;Respectfully &lt;BR /&gt;Blueblue</description>
      <pubDate>Sat, 11 Dec 2021 23:19:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-keep-the-most-recent-data-with-proc-sort/m-p/785607#M250745</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-12-11T23:19:54Z</dc:date>
    </item>
  </channel>
</rss>

