<?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: conditional query with two datasets Help in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445066#M13737</link>
    <description>If you will continue solving problems like this you definitely need a foundation of Base SAS and SQL. There are lot of training options available. &lt;BR /&gt;If I hand if over working code you would probably not be able to reuse it for other issues.</description>
    <pubDate>Tue, 13 Mar 2018 07:14:26 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2018-03-13T07:14:26Z</dc:date>
    <item>
      <title>conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/444806#M13723</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have two data sets ( clinic A and ED visits)&lt;/P&gt;&lt;P&gt;Clinic A sample:&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp; DATE&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ICD&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 12/1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;493&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 3/1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;785&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 5/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;493&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; 6/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 105&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;ED data sample&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp; DATE&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ICD&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 1/1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;785&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 4/12&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;493&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 6/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;493&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; 7/14&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 105&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what I am trying to match here is any ED encounter with&amp;nbsp; ICD codes macthed with the ICD of any encounter of that ID in clinic data set.&lt;/P&gt;&lt;P&gt;So on ED&amp;nbsp; data set I would like to create one variable called "sameicd" where if the ICD on ED data set match with any of the ICD on the cllinic A visits&amp;nbsp; data set then sameicd=yes, esle sameicd=no&lt;/P&gt;&lt;P&gt;for example&amp;nbsp; the ID 1 in 1/1 date has ICD 785 which matches with the second visit from clinic A in 3/1 then sameicd=yes&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any help will be highly appriciated&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 15:48:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/444806#M13723</guid>
      <dc:creator>chuie</dc:creator>
      <dc:date>2018-03-12T15:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/444828#M13724</link>
      <description>SQL ED left join Clinic on all variables.&lt;BR /&gt;Use a case statement and test if Clinic.ICD is not missing.</description>
      <pubDate>Mon, 12 Mar 2018 16:38:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/444828#M13724</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2018-03-12T16:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/444842#M13726</link>
      <description>&lt;P&gt;Sorry I didnot understand what you meant. I was not asking to join the two tables but to create a case if the icd is same to any of the encounter to clinic in any of their visit.. please elaborate more&amp;nbsp; with actual code&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 16:58:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/444842#M13726</guid>
      <dc:creator>chuie</dc:creator>
      <dc:date>2018-03-12T16:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/444882#M13727</link>
      <description>This was pseudo code.&lt;BR /&gt;It seems you need to develop your SQL skills.</description>
      <pubDate>Mon, 12 Mar 2018 18:51:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/444882#M13727</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2018-03-12T18:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/444901#M13729</link>
      <description>&lt;P&gt;Yes ..that is why I ask for help&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 19:25:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/444901#M13729</guid>
      <dc:creator>chuie</dc:creator>
      <dc:date>2018-03-12T19:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445066#M13737</link>
      <description>If you will continue solving problems like this you definitely need a foundation of Base SAS and SQL. There are lot of training options available. &lt;BR /&gt;If I hand if over working code you would probably not be able to reuse it for other issues.</description>
      <pubDate>Tue, 13 Mar 2018 07:14:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445066#M13737</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2018-03-13T07:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445136#M13739</link>
      <description>I simply got stuck on some data management so I posted for help.I think you&lt;BR /&gt;are thinking everyone taking this forum as granted but it's not true.There&lt;BR /&gt;are some people who just want how to do it rather lifetime lesson&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Mar 2018 12:28:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445136#M13739</guid>
      <dc:creator>chuie</dc:creator>
      <dc:date>2018-03-13T12:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445140#M13740</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/130917"&gt;@chuie&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;I can understand that &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH&lt;/a&gt;'s reply&amp;nbsp;might come across a bit harsh to you. On the other hand I&amp;nbsp;fully understand why &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH&lt;/a&gt;&amp;nbsp;answered this way.&lt;/P&gt;
&lt;P&gt;You can get in this forum a lot of very valuable&amp;nbsp;help from very experienced people - and all free of charge.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To succeed in getting such help on an ongoing bases there are a few things expected from you.&lt;/P&gt;
&lt;P&gt;1. Post sample data and post them in a way that the ones helping you don't have to do extra work for you (so post the data in the form of tested SAS data steps creating the data).&lt;/P&gt;
&lt;P&gt;2. Show us the expected result (post another data step creating the desired result or post some table showing what the result should look like based on your sample source data).&lt;/P&gt;
&lt;P&gt;3. Explain the logic how you get from your source sample data to the desired result&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. If you can, post your eventually not yet working code. That not only demonstrates that you've done your homework, it also shows us your line of thinking and the level of your SAS coding skills and allows us to provide you with targeted (coding) answers.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Mar 2018 12:48:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445140#M13740</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-03-13T12:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445182#M13744</link>
      <description>&lt;P&gt;Thank you Patrik for clarification. I do belive that learning sas will help me tremendously on my job but at this moment&amp;nbsp; I am just seeking some expert guidance rather that asking somebody to do my job.&lt;/P&gt;&lt;P&gt;Also,&lt;/P&gt;&lt;P&gt;I did posted the sample data with explanation of what I want.&lt;/P&gt;&lt;P&gt;I am reposting this again with&amp;nbsp; a sample file of desired outcome.&lt;/P&gt;&lt;P&gt;I have two data sets ( clinic A and ED visits)&lt;/P&gt;&lt;P&gt;Clinic A sample:&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp; DATE&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ICD&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 12/1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;493&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 3/1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;785&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 5/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;493&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; 6/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 105&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;ED data sample&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp; DATE&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ICD&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 1/1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;785&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 4/12&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;493&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 6/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;493&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; 7/14&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 105&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what I am trying to match here is any ED encounter with&amp;nbsp; ICD codes macthed with the ICD of any encounter of that ID in clinic data set.&lt;/P&gt;&lt;P&gt;So on ED&amp;nbsp; data set I would like to create one variable called "sameicd" where if the ICD on ED data set match with any of the ICD on the cllinic A visits&amp;nbsp; data set then sameicd=yes, esle sameicd=no&lt;/P&gt;&lt;P&gt;for example&amp;nbsp; the ID 1 in 1/1 date has ICD 785 which matches with the second visit from clinic A in 3/1 then sameicd=yes&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;desired outcome:&lt;/P&gt;&lt;P&gt;ED data sample&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp; DATE&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ICD&amp;nbsp; sameicd&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 1/1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;785&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yes&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 4/12&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;493&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yes&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 6/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;493&amp;nbsp;&amp;nbsp;&amp;nbsp; yes&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; 7/14&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 105&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yes&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We do not have NO because all of the ICD on ED&amp;nbsp; data matches with ICD of Clinic A data .&lt;/P&gt;&lt;P&gt;any help will be highly appriciated&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;</description>
      <pubDate>Tue, 13 Mar 2018 14:26:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445182#M13744</guid>
      <dc:creator>chuie</dc:creator>
      <dc:date>2018-03-13T14:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445359#M13749</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/130917"&gt;@chuie&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Please do your bit and provide sample data in a form which doesn't require us to do work for you which you can do yourself.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Providing data via a working data step could look like below. Please note that below code doesn't solve the issue that you're not providing us with full date strings. You will have to do something about this before you can reasonably import the dates as SAS Date values&amp;nbsp;into variable DATS. Your turn!&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data clinic;
  input ID DATE ICD;
  datalines;
1 12/1 493
1 3/1 785
2 5/4 493
3 6/4 105
;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Mar 2018 00:38:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445359#M13749</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-03-14T00:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445361#M13750</link>
      <description>I couldn't paset it in actual sas code but here are my two data sets and the desired outcome data set. Thanks data clinic; input id date mmddyy10. icd; datalines; 1 12/1/2016 493 1 3/1/2018 785 2 5/4/2015 493 2 4/5/2016 651 3 6/4/2017 105 ; run; data ED; input id date mmddyy10. race $ gender$ icd; datalines; 1 1/1/2016 w f 785 1 4/12/2016 w f 493 2 6/4/2015 b m 493 3 7/14/2015 b f 105 3 3/4/2016 b f 359 ; run; data desire; input id date mmddyy10. race$ gender$ icd sameicd$; datalines; 1 1/1/2016 w f 785 yes 1 4/12/2016 w f 493 yes 2 6/4/2015 b m 493 yes 3 7/14/2015 b f 347 no 3 3/4/2016 b f 359 no ; run;</description>
      <pubDate>Wed, 14 Mar 2018 01:40:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445361#M13750</guid>
      <dc:creator>chuie</dc:creator>
      <dc:date>2018-03-14T01:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445409#M13751</link>
      <description>&lt;P&gt;Assuming there's been a typo for the ICD code in row 4 of table ED (which I've fixed in below data used), the following code returns your desired result&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data clinic;
  input id date :mmddyy10. icd;
  datalines;
1 12/1/2016 493 
1 3/1/2018 785 
2 5/4/2015 493 
2 4/5/2016 651 
3 6/4/2017 105 
;
run;

data ED;
  input id date :mmddyy10. race $ gender$ icd;
  datalines;
1 1/1/2016 w f 785 
1 4/12/2016 w f 493 
2 6/4/2015 b m 493 
3 7/14/2015 b f 347 
3 3/4/2016 b f 359 
;
run;

data desire;
  input id date :mmddyy10. race$ gender$ icd sameicd$;
  datalines;
1 1/1/2016 w f 785 yes 
1 4/12/2016 w f 493 yes 
2 6/4/2015 b m 493 yes 
3 7/14/2015 b f 347 no 
3 3/4/2016 b f 359 no 
;
run;

proc sql;
  create table want as
  select
    E.*,
    case
      when missing(c.icd) then 'No'
      else 'Yes'
      end as sameicd
  from 
    ed as E
      left join
    (select distinct id, icd from clinic) as C
    on E.id=C.id and E.icd=C.icd
  ;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Depending on your actual data volumes and whether the data is stored in SAS files (tables) or a database, using a data step with a hash for lookup might perform quite a bit better.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Mar 2018 08:09:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445409#M13751</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-03-14T08:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: conditional query with two datasets Help</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445483#M13753</link>
      <description>&lt;P&gt;Thank you so much.&lt;/P&gt;&lt;P&gt;Will you please navigate me thru the link or method's name&amp;nbsp; where I can self learn this process?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Mar 2018 14:19:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/conditional-query-with-two-datasets-Help/m-p/445483#M13753</guid>
      <dc:creator>chuie</dc:creator>
      <dc:date>2018-03-14T14:19:37Z</dc:date>
    </item>
  </channel>
</rss>

