<?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: Match on two variable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265550#M52243</link>
    <description>&lt;P&gt;Thanks Haikuo. I just modified little bit and it's working. Thanks for solution. will implement to real data and let you know reult.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
if _n_=1 then do;

dcl hash h();
h.definekey('id');
h.definedata('id');
h.definedone();
call missing (id);
end;

set have;
if h.check(key:source_id) and h.check(key:dest_id) then do ;output;
rc=h.ref(key:source_id,data&amp;amp;colon;source_id);
rc=h.ref(key:dest_id,data&amp;amp;colon;dest_id);
drop id rc;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 21 Apr 2016 23:06:53 GMT</pubDate>
    <dc:creator>nkm123</dc:creator>
    <dc:date>2016-04-21T23:06:53Z</dc:date>
    <item>
      <title>Difficult to Match and Remove observation based on combination of  two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265517#M52230</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have dataset in following format&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
store_id = 101; source_id = 1;dest_id = 3;output;
store_id = 101; source_id = 2;dest_id = 3;output;
store_id = 102; source_id = 1;dest_id = 4;output;
store_id = 102; source_id = 2;dest_id = 4;output;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and my requirement is to take out all duplicates where source or dest id is already taken. so final dataset should be like this&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
store_id = 101; source_id = 1;dest_id = 3;output;
store_id = 102; source_id = 2;dest_id = 4;output;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Logic:-&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) First record doesn't have any previous record to compare so will be there in final dataset.&lt;/P&gt;
&lt;P&gt;2) second record&amp;nbsp;should be removed as dest_id = 3 is taken by first observation.&lt;/P&gt;
&lt;P&gt;3) third record should also be removed as source id = 1 is already taken by first observation.&lt;/P&gt;
&lt;P&gt;4) should keep fourth observation as source and dest id are not taken previously.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have millions of observation and different combination (source and dest id is not 1 and 2 but can have as many as digit ).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance for help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 20:30:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265517#M52230</guid>
      <dc:creator>nkm123</dc:creator>
      <dc:date>2016-04-21T20:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Match on two variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265518#M52231</link>
      <description>&lt;P&gt;More Examples:-&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
store_id = 101; source_id = 1;dest_id = 3;output;
store_id = 101; source_id = 2;dest_id = 3;output;
store_id = 102; source_id = 1;dest_id = 4;output;
store_id = 102; source_id = 2;dest_id = 4;output;
store_id = 103; source_id = 5;dest_id = 6;output;
store_id = 103; source_id = 5;dest_id = 7;output;
store_id = 103; source_id = 8;dest_id = 10;output;
store_id = 103; source_id = 9;dest_id = 10;output;

run;

data want;
store_id = 101; source_id = 1;dest_id = 3;output;
store_id = 102; source_id = 2;dest_id = 4;output;
store_id = 103; source_id = 5;dest_id = 6;output;
store_id = 103; source_id = 8;dest_id = 10;output;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Apr 2016 19:46:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265518#M52231</guid>
      <dc:creator>nkm123</dc:creator>
      <dc:date>2016-04-21T19:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Match on two variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265528#M52235</link>
      <description>&lt;P&gt;Hash comes in handy:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
if _n_=1 then do;

dcl hash h();
h.definekey('id');
h.definedata('id');
h.definedone();
call missing (id);
end;

set have;
if h.check(key:source_id) and h.check(key:dest_id) then output;
rc=h.ref(key:source_id,data&amp;amp;colon;source_id);
rc=h.ref(key:dest_id,data&amp;amp;colon;dest_id);
drop id rc;
run;
 &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Apr 2016 21:04:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265528#M52235</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2016-04-21T21:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Match on two variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265539#M52238</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4877"&gt;@Haikuo﻿&lt;/a&gt;&amp;nbsp;I think the forum garbled your code a bit? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 21:58:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265539#M52238</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-21T21:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Match on two variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265550#M52243</link>
      <description>&lt;P&gt;Thanks Haikuo. I just modified little bit and it's working. Thanks for solution. will implement to real data and let you know reult.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
if _n_=1 then do;

dcl hash h();
h.definekey('id');
h.definedata('id');
h.definedone();
call missing (id);
end;

set have;
if h.check(key:source_id) and h.check(key:dest_id) then do ;output;
rc=h.ref(key:source_id,data&amp;amp;colon;source_id);
rc=h.ref(key:dest_id,data&amp;amp;colon;dest_id);
drop id rc;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Apr 2016 23:06:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265550#M52243</guid>
      <dc:creator>nkm123</dc:creator>
      <dc:date>2016-04-21T23:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Match on two variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265553#M52244</link>
      <description>&lt;P&gt;Yes,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza﻿&lt;/a&gt;. It has been doing this to all of the hash code from day one. I have no idea when and if it can be fixed :(.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 23:15:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265553#M52244</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2016-04-21T23:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Match on two variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265555#M52245</link>
      <description>&lt;P&gt;Don't think your version is working. Noticing the 'And' in the following code, so if you have a 'Or', you will be skipping those 'id's that need to be uploaded into Hash.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if h.check(key:source_id) and h.check(key:dest_id) &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&lt;/P&gt;
&lt;P&gt;Maybe I have mistaken your intention, so do please do ignore my comments above if it is the case.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 23:24:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265555#M52245</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2016-04-21T23:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: Match on two variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265560#M52246</link>
      <description>&lt;P&gt;Yes, I need to skip &amp;nbsp;id's to load into hash if match is not found so added do loop condition to your code so hash object only updated when record is written to output. It's what I wanted.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Even I implemented it to real data and it's working fine. Didn't get any unexpected error or result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks Haikuo for your support.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2016 00:21:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265560#M52246</guid>
      <dc:creator>nkm123</dc:creator>
      <dc:date>2016-04-22T00:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Difficult to Match and Remove observation based on combination of  two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265753#M52305</link>
      <description>&lt;P&gt;This one seems to be working too!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt; have_not (&lt;/FONT&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;drop&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;=one_source_id one_dest_id);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;retain&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; one_source_id one_dest_id;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;set&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; have;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;if&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; _N_=&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#008080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#008080" face="SAS Monospace" size="1"&gt;1&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;then&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;do&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;one_source_id=source_id;&lt;/P&gt;&lt;P&gt;one_dest_id=dest_id;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;end&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;else&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;do&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;if&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; source_id = one_source_id &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;then&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; delete;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;if&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; dest_id=one_dest_id &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;then&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; delete;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;if&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; source_id ne lag(source_id) &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;then&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; one_source_id=source_id; &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;if&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; dest_id ne lag(dest_id) &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;then&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; one_dest_id=dest_id;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;end&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2016 19:26:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difficult-to-Match-and-Remove-observation-based-on-combination/m-p/265753#M52305</guid>
      <dc:creator>vkmanchi</dc:creator>
      <dc:date>2016-04-22T19:26:49Z</dc:date>
    </item>
  </channel>
</rss>

