<?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: Sas table look up using set statements in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651588#M195512</link>
    <description>key=name /unique--always takes the first observation , if multiple records are matching the criteria.&lt;BR /&gt;&lt;BR /&gt;Ok , to make it simple ,I have changed the dataset b to the below:&lt;BR /&gt;&lt;BR /&gt;data b(index=(name));&lt;BR /&gt;input name $ colr $ ;&lt;BR /&gt;cards;&lt;BR /&gt;sa brown&lt;BR /&gt;Sb fair&lt;BR /&gt;AY fair&lt;BR /&gt;SA brown&lt;BR /&gt;Sy Fair&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;Even now,the same output though no color matching criteria:&lt;BR /&gt;&lt;BR /&gt;name	age	gender	colr	skindis&lt;BR /&gt;sa	33	F	brown	&lt;BR /&gt;Sb	39	M	fair	More&lt;BR /&gt;AY	11	M	fair	More&lt;BR /&gt;SA	8	F	brown	More&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 28 May 2020 23:22:10 GMT</pubDate>
    <dc:creator>sfffdg</dc:creator>
    <dc:date>2020-05-28T23:22:10Z</dc:date>
    <item>
      <title>Sas table look up using set statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651297#M195401</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; a;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;input&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; name $ age gender $;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;cards&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;sa 33 F&lt;/P&gt;
&lt;P&gt;Sb 39 M&lt;/P&gt;
&lt;P&gt;AY 11 M&lt;/P&gt;
&lt;P&gt;SA 8 F&lt;/P&gt;
&lt;P&gt;Ny Fair&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; b(index=(name));&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;input&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; name $ colr $ ;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;cards&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;sa brown&lt;/P&gt;
&lt;P&gt;sa fair&lt;/P&gt;
&lt;P&gt;Sb fair&lt;/P&gt;
&lt;P&gt;AY fair&lt;/P&gt;
&lt;P&gt;SA brown&lt;/P&gt;
&lt;P&gt;Sy Fair&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; c(index=(colr));&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;input&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; colr $ skindis $ SD $;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;cards&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Brown Medium MD&lt;/P&gt;
&lt;P&gt;fair More MR&lt;/P&gt;
&lt;P&gt;Black less LS&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; cb;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; a;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; b (&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;keep&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;= name colr) key=name /&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;unique&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;if&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; _error_ = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT face="Courier New" size="2" color="#008080"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT face="Courier New" size="2" color="#0000ff"&gt;then&lt;/FONT&gt; &lt;FONT face="Courier New" size="2" color="#0000ff"&gt;do&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;_error_ = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT face="Courier New" size="2" color="#008080"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;end&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; c (&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;keep&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;= colr skindis) key=colr /&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;unique&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;if&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; _error_ = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT face="Courier New" size="2" color="#008080"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT face="Courier New" size="2" color="#0000ff"&gt;then&lt;/FONT&gt; &lt;FONT face="Courier New" size="2" color="#0000ff"&gt;do&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;_error_ = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT face="Courier New" size="2" color="#008080"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;end&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#000080"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&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;
&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 06:42:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651297#M195401</guid>
      <dc:creator>sfffdg</dc:creator>
      <dc:date>2020-05-28T06:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Sas table look up using set statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651298#M195402</link>
      <description>&lt;P&gt;If I run the above query , the result I get is&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;name&amp;nbsp;age&amp;nbsp;gender&amp;nbsp;colr&amp;nbsp;skindis&lt;BR /&gt;sa&amp;nbsp;33&amp;nbsp;F&amp;nbsp;brown&amp;nbsp;&lt;BR /&gt;Sb&amp;nbsp;39&amp;nbsp;M&amp;nbsp;fair&amp;nbsp;More&lt;BR /&gt;AY&amp;nbsp;11&amp;nbsp;M&amp;nbsp;fair&amp;nbsp;More&lt;BR /&gt;SA&amp;nbsp;8&amp;nbsp;F&amp;nbsp;brown&amp;nbsp;More&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help me in achieving the below result:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;name&amp;nbsp;age&amp;nbsp;gender&amp;nbsp;colr&amp;nbsp;skindis&lt;BR /&gt;sa&amp;nbsp;33&amp;nbsp;F&amp;nbsp;brown&amp;nbsp;&lt;BR /&gt;Sb&amp;nbsp;39&amp;nbsp;M&amp;nbsp;fair&amp;nbsp;More&lt;BR /&gt;AY&amp;nbsp;11&amp;nbsp;M&amp;nbsp;fair&amp;nbsp;More&lt;BR /&gt;SA&amp;nbsp;8&amp;nbsp;F&amp;nbsp;brown&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 06:45:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651298#M195402</guid>
      <dc:creator>sfffdg</dc:creator>
      <dc:date>2020-05-28T06:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Sas table look up using set statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651322#M195413</link>
      <description>&lt;P&gt;What is the rule for joining a and b? Why do you only take the "brown" for "sa"?&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 07:57:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651322#M195413</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-05-28T07:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: Sas table look up using set statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651328#M195419</link>
      <description>Hi Kurt,&lt;BR /&gt;&lt;BR /&gt;The rule for joining and b is the key=name.&lt;BR /&gt;&lt;BR /&gt;and the question is about the output , why I have got the last record in the result , which is below&lt;BR /&gt;SA 8 F brown More&lt;BR /&gt;&lt;BR /&gt;when no matching records exist in table 'c' ( which is 'Brown' and not 'brown') , in that case the last record in the output should be&lt;BR /&gt;SA 8 F brown</description>
      <pubDate>Thu, 28 May 2020 08:31:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651328#M195419</guid>
      <dc:creator>sfffdg</dc:creator>
      <dc:date>2020-05-28T08:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sas table look up using set statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651331#M195421</link>
      <description>The below is the final query , which output I concern about:&lt;BR /&gt;&lt;BR /&gt;data cb;&lt;BR /&gt;set a;&lt;BR /&gt;set b (keep= name colr) key=name /unique;&lt;BR /&gt;if _error_ = 1 then do;&lt;BR /&gt;_error_ = 0;&lt;BR /&gt;end;&lt;BR /&gt;set c (keep= colr skindis) key=colr /unique;&lt;BR /&gt;if _error_ = 1 then do;&lt;BR /&gt;_error_ = 0;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;run;&lt;BR /&gt;</description>
      <pubDate>Thu, 28 May 2020 08:44:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651331#M195421</guid>
      <dc:creator>sfffdg</dc:creator>
      <dc:date>2020-05-28T08:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Sas table look up using set statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651336#M195424</link>
      <description>&lt;P&gt;You have not answered my question. Why do you take sa/brown over sa/fair when joining dataset a on name with dataset b?&lt;/P&gt;
&lt;P&gt;I am NOT interested in code, I am interested in the&amp;nbsp;&lt;EM&gt;rule&lt;/EM&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 09:15:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651336#M195424</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-05-28T09:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Sas table look up using set statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651341#M195426</link>
      <description>If colr is not found in datset C, skinds take the last value founded.  You need to manage this.&lt;BR /&gt;&lt;BR /&gt;data cb ;&lt;BR /&gt;&lt;BR /&gt;set a;&lt;BR /&gt;&lt;BR /&gt;set b (keep= name colr) key=name /unique;&lt;BR /&gt;&lt;BR /&gt;if _error_ = 1 then do;&lt;BR /&gt;&lt;BR /&gt;_error_ = 0;&lt;BR /&gt;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;set c (keep= colr skindis) key=colr /unique;&lt;BR /&gt;if _error_ = 1 then do;&lt;BR /&gt;	skindis="";&lt;BR /&gt;	_error_ = 0;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;run;</description>
      <pubDate>Thu, 28 May 2020 10:16:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651341#M195426</guid>
      <dc:creator>CarloPetti</dc:creator>
      <dc:date>2020-05-28T10:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Sas table look up using set statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651584#M195508</link>
      <description>key=colr /unique---always takes the first observation , if we have multiple records matching the criteria</description>
      <pubDate>Thu, 28 May 2020 23:15:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651584#M195508</guid>
      <dc:creator>sfffdg</dc:creator>
      <dc:date>2020-05-28T23:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sas table look up using set statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651588#M195512</link>
      <description>key=name /unique--always takes the first observation , if multiple records are matching the criteria.&lt;BR /&gt;&lt;BR /&gt;Ok , to make it simple ,I have changed the dataset b to the below:&lt;BR /&gt;&lt;BR /&gt;data b(index=(name));&lt;BR /&gt;input name $ colr $ ;&lt;BR /&gt;cards;&lt;BR /&gt;sa brown&lt;BR /&gt;Sb fair&lt;BR /&gt;AY fair&lt;BR /&gt;SA brown&lt;BR /&gt;Sy Fair&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;Even now,the same output though no color matching criteria:&lt;BR /&gt;&lt;BR /&gt;name	age	gender	colr	skindis&lt;BR /&gt;sa	33	F	brown	&lt;BR /&gt;Sb	39	M	fair	More&lt;BR /&gt;AY	11	M	fair	More&lt;BR /&gt;SA	8	F	brown	More&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 28 May 2020 23:22:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651588#M195512</guid>
      <dc:creator>sfffdg</dc:creator>
      <dc:date>2020-05-28T23:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sas table look up using set statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651603#M195521</link>
      <description>&lt;P&gt;The issue is that any variable that exists in an input dataset is automatically "retained" (that is why one-to-many merges work). So you need to re-set them to missing so they aren't carried over.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS Your IF statements are not really doing anything useful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So if you input looks like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data a;
  input name $ age gender $ @@;
cards;
sa 33 F Sb 39 M AY 11 M SA 8 F Ny 44 F 
;
data b(index=(name));
  input name $ colr $ @@;
cards;
sa brown Sb fair AY fair SA brown Sy Fair
;
data c(index=(colr));
  input colr $ skindis $ SD $ @@;
cards;
Brown Medium MD fair  More   MR Black less   LS
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And you write your lookup/merge step like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data cb_right;
  set a;
  set b (keep= name colr) key=name /unique;
  set c (keep= colr skindis) key=colr /unique;
  output;
  call missing(of _all_);
  _error_ = 0;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then you get what I think you wanted:&lt;/P&gt;
&lt;PRE&gt;Obs    name    age    gender    colr     skindis

 1      sa      33      F       brown
 2      Sb      39      M       fair      More
 3      AY      11      M       fair      More
 4      SA       8      F       brown
 5      Ny      44      F&lt;/PRE&gt;
&lt;P&gt;If you change Brown in table C to brown so that it matches the values in table B then you get:&lt;/P&gt;
&lt;PRE&gt;Obs    name    age    gender    colr     skindis

 1      sa      33      F       brown    Medium
 2      Sb      39      M       fair     More
 3      AY      11      M       fair     More
 4      SA       8      F       brown    Medium
 5      Ny      44      F
&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 May 2020 00:18:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-table-look-up-using-set-statements/m-p/651603#M195521</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-05-29T00:18:58Z</dc:date>
    </item>
  </channel>
</rss>

