<?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: Why hash(hiter) do not map by key? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605290#M175648</link>
    <description>&lt;P&gt;I'm not sure I entirely understand what you want.&amp;nbsp; Could you show us what the desired output would be for your sample data?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
    <pubDate>Tue, 19 Nov 2019 04:15:18 GMT</pubDate>
    <dc:creator>mkeintz</dc:creator>
    <dc:date>2019-11-19T04:15:18Z</dc:date>
    <item>
      <title>Why hash(hiter) do not map by key?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605269#M175633</link>
      <description>&lt;P&gt;what I have as below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data vs;
   input id $1-4 vstestcd $6-7 vsdtc $9-18;
   datalines;
 M01 AA 2019-09-26
 M01 BB 2019-09-26
 M01 AA 2019-10-15
 M01 BB 2019-10-15
 M01 AA 2019-10-23
 M02 AA 2019-09-12
 M02 BB 2019-09-12
 M02 AA 2019-09-23
 M02 BB 2019-09-23
 M02 AA 2019-09-30
;
run;

data sv;
   input id $1-4 visit $6-7 svstdtc $9-18 svendtc $19-29;
   datalines;
 M01 01 2019-09-26 2019-09-26
 M01 02 2019-10-15 2019-10-15
 M01 03 2019-10-19 2019-10-19
 M01 04 2019-10-23 2019-10-23
 M01 05 2019-11-03 2019-11-03
 M02 01 2019-09-12 2019-09-12
 M02 02 2019-09-23 2019-09-23
 M02 03 2019-09-26 2019-09-26
 M02 04 2019-09-30 2019-09-30
 M02 05 2019-10-08 2019-10-08
;
run;
  &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It's just a small part of the data and I want to use hash by down to up to &lt;SPAN&gt;traversal&amp;nbsp;&lt;/SPAN&gt;SV dataset to connect VS dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because there some records have multiple date for different visit in sv dataset，and I want to map last visit in sv data when SVSTDTC&amp;lt;=vsdt&amp;lt;=SVENDTC.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code is as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
  if _n_=1 then do;
    if 0 then set sv;
    declare hash h1(dataset:'sv', multidata: "Y");
    dcl hiter iter('h1');
    h1.definekey('id');
    h1.definedata('SVENDTC','SVSTDTC','VISIT');
    h1.definedone();
  end;
  
  do until(eof);
    set vs end=eof;
   
    do RC = iter.LAST() by 0 while (RC = 0) ;
      if svstdtc&amp;lt;=vsdtc&amp;lt;=svendtc then goto edit;
      rc=iter.PREV();
    end;
    edit:
    output;
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I use&amp;nbsp;&lt;CODE class=" language-sas"&gt;iter.LAST and iter.PREV to &lt;SPAN&gt;traversal&amp;nbsp;&lt;/SPAN&gt;from bottom to top, but the key is not map.&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;The second ID's visit is connected to the first ID.&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11.png" style="width: 431px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34077i766018D78CC9D3B6/image-size/large?v=v2&amp;amp;px=999" role="button" title="11.png" alt="11.png" /&gt;&lt;/span&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;Please help me and thanks.&amp;nbsp;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 05:20:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605269#M175633</guid>
      <dc:creator>Lee_wan</dc:creator>
      <dc:date>2019-11-19T05:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Why hash(hiter) do not map by key?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605290#M175648</link>
      <description>&lt;P&gt;I'm not sure I entirely understand what you want.&amp;nbsp; Could you show us what the desired output would be for your sample data?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 04:15:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605290#M175648</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2019-11-19T04:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Why hash(hiter) do not map by key?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605296#M175650</link>
      <description>&lt;P&gt;Hi, thanks for your response. My English is not good and I&amp;nbsp;uploaded a new picture, hoping to help you understand。&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 05:22:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605296#M175650</guid>
      <dc:creator>Lee_wan</dc:creator>
      <dc:date>2019-11-19T05:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: Why hash(hiter) do not map by key?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605302#M175654</link>
      <description>&lt;P&gt;Don't see a picture?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 06:10:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605302#M175654</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-11-19T06:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Why hash(hiter) do not map by key?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605305#M175656</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11.png" style="width: 431px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34077i766018D78CC9D3B6/image-size/large?v=v2&amp;amp;px=999" role="button" title="11.png" alt="11.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And now？&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 06:26:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605305#M175656</guid>
      <dc:creator>Lee_wan</dc:creator>
      <dc:date>2019-11-19T06:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Why hash(hiter) do not map by key?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605309#M175658</link>
      <description>&lt;P&gt;Why don't you use a simple SQL?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data vs;
length
  id $3
  vstestcd $2
  vsdt 4
;
format vsdt yymmddd10.;
input id vstestcd vsdt :yymmdd10.;
datalines;
M01 AA 2019-09-26
M01 BB 2019-09-26
M01 AA 2019-10-15
M01 BB 2019-10-15
M01 AA 2019-10-23
M02 AA 2019-09-12
M02 BB 2019-09-12
M02 AA 2019-09-23
M02 BB 2019-09-23
M02 AA 2019-09-30
;

data sv;
length
  id $3
  visit $2
  svstdt
  svendt
    4
;
format
  svstdt
  svendt
    yymmddd10.
;
input id visit (svstdt svendt) (:yymmdd10.);
datalines;
M01 01 2019-09-26 2019-09-26
M01 02 2019-10-15 2019-10-15
M01 03 2019-10-19 2019-10-19
M01 04 2019-10-23 2019-10-23
M01 05 2019-11-03 2019-11-03
M02 01 2019-09-12 2019-09-12
M02 02 2019-09-23 2019-09-23
M02 03 2019-09-26 2019-09-26
M02 04 2019-09-30 2019-09-30
M02 05 2019-10-08 2019-10-08
;

proc sql;
create table want as
select
  sv.*,
  vs.vstestcd,
  vs.vsdt
from sv left join vs
on sv.id = vs.id and sv.svstdt &amp;lt;= vs.vsdt &amp;lt;= sv.svendt;
quit;

proc print data=want noobs;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;PRE&gt;id     visit        svstdt        svendt    vstestcd          vsdt

M01     02      2019-10-15    2019-10-15       AA       2019-10-15
M01     04      2019-10-23    2019-10-23       AA       2019-10-23
M01     01      2019-09-26    2019-09-26       BB       2019-09-26
M01     01      2019-09-26    2019-09-26       AA       2019-09-26
M01     02      2019-10-15    2019-10-15       BB       2019-10-15
M01     03      2019-10-19    2019-10-19                         .
M01     05      2019-11-03    2019-11-03                         .
M02     01      2019-09-12    2019-09-12       BB       2019-09-12
M02     01      2019-09-12    2019-09-12       AA       2019-09-12
M02     04      2019-09-30    2019-09-30       AA       2019-09-30
M02     02      2019-09-23    2019-09-23       BB       2019-09-23
M02     02      2019-09-23    2019-09-23       AA       2019-09-23
M02     05      2019-10-08    2019-10-08                         .
M02     03      2019-09-26    2019-09-26                         .
&lt;/PRE&gt;
&lt;P&gt;You can see there is no cross-mapping.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 06:50:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605309#M175658</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-11-19T06:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Why hash(hiter) do not map by key?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605319#M175663</link>
      <description>&lt;P&gt;Hi thanks for your response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because there are maybe multiple records with the same svstdtc\svstdtc but different visit existing in SV data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just like “&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;M01 01 2019-09-26 2019-09-26&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;M01 02 2019-09-26 2019-09-26&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;”&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I use proc sql，the records will be increase.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 07:25:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605319#M175663</guid>
      <dc:creator>Lee_wan</dc:creator>
      <dc:date>2019-11-19T07:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Why hash(hiter) do not map by key?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605324#M175667</link>
      <description>&lt;OL&gt;
&lt;LI&gt;Is this picture the entire desired output from your sample data?&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Your use of the iterator does not guarantee an ID match.&amp;nbsp; It only satisfies the date condition.&amp;nbsp; In fact you don't need the iterator, since you really want only to search within tied id items.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Even if you find the right ID, please remember that (for multidata:'Y') when there are more that one hash dataitem for a key, they are stored in the order encountered, so you must be sure that your data set is already in the desired order.&amp;nbsp; But if your SV dataset is already in the desired order, then you can:&lt;/LI&gt;
&lt;/OL&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data vs;
   input id $1-4 vstestcd $6-7 vsdtc $9-18;
   datalines;
 M01 AA 2019-09-26
 M01 BB 2019-09-26
 M01 AA 2019-10-15
 M01 BB 2019-10-15
 M01 AA 2019-10-23
 M02 AA 2019-09-12
 M02 BB 2019-09-12
 M02 AA 2019-09-23
 M02 BB 2019-09-23
 M02 AA 2019-09-30
;
run;

data sv;
   input id $1-4 visit $6-7 svstdtc $9-18 svendtc $19-29;
   datalines;
 M01 01 2019-09-26 2019-09-26
 M01 02 2019-10-15 2019-10-15
 M01 03 2019-10-19 2019-10-19
 M01 04 2019-10-23 2019-10-23
 M01 05 2019-11-03 2019-11-03
 M02 01 2019-09-12 2019-09-12
 M02 02 2019-09-23 2019-09-23
 M02 03 2019-09-26 2019-09-26
 M02 04 2019-09-30 2019-09-30
 M02 05 2019-10-08 2019-10-08
;
run;

data test (drop=_:);
  if _n_=1 then do;
    if 0 then set sv;
    declare hash h1(dataset:'sv', multidata: "Y");
    h1.definekey('id');
    h1.definedata('SVENDTC','SVSTDTC','VISIT');
    h1.definedone();
  end;
  
  set vs;
  _rc=h1.find();
  if _rc=0;
  do _i=1 by 1 until (_rc^=0);
    if svstdtc&amp;lt;=vsdtc&amp;lt;=svendtc then _latest_success=_i;
    _rc=h1.find_next();
  end;
  if _latest_success^=.;
  _rc=h1.find();
  if _latest_success&amp;gt;1 then do _i=2 to _latest_success;
    _rc=h1.find_next();
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;OL&gt;
&lt;LI&gt;The FIND method always matches to the first matching data item when there are ties.&lt;/LI&gt;
&lt;LI&gt;The FIND_NEXT method advances within the tied data items.&amp;nbsp; It returns a non-zero when all the ties&amp;nbsp; are exhausted.&amp;nbsp; So this program uses FIND_NEXT to step through all the matching ID's,&amp;nbsp; And it updates the _latest_found index only when the date condition is satisfied.&amp;nbsp; At the end of the loop _latest_found will specify the most recent satisfactory date for a matching id.&lt;/LI&gt;
&lt;LI&gt;Then use the FIND again to go to the beginning of the matching id's.&amp;nbsp; And use a&amp;nbsp; counter to re-apply FIND_NEXT up&amp;nbsp; to _latest_found to get and keep the most recent matching data item in&amp;nbsp; the hash object.&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Tue, 19 Nov 2019 07:39:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605324#M175667</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2019-11-19T07:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Why hash(hiter) do not map by key?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605332#M175670</link>
      <description>&lt;P&gt;Thank you for your response!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Using the FIND again that makes me becoming enlightened at once!!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 08:18:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605332#M175670</guid>
      <dc:creator>Lee_wan</dc:creator>
      <dc:date>2019-11-19T08:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why hash(hiter) do not map by key?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605347#M175678</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/288172"&gt;@Lee_wan&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi thanks for your response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because there are maybe multiple records with the same svstdtc\svstdtc but different visit existing in SV data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just like “&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;M01 01 2019-09-26 2019-09-26&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE&gt;M01 02 2019-09-26 2019-09-26&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I use proc sql，the records will be increase.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Then use a subselect to reduce the entries in sv:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data vs;
length
  id $3
  vstestcd $2
  vsdt 4
;
format vsdt yymmddd10.;
input id vstestcd vsdt :yymmdd10.;
datalines;
M01 AA 2019-09-26
M01 BB 2019-09-26
M01 AA 2019-10-15
M01 BB 2019-10-15
M01 AA 2019-10-23
M02 AA 2019-09-12
M02 BB 2019-09-12
M02 AA 2019-09-23
M02 BB 2019-09-23
M02 AA 2019-09-30
;

data sv;
length
  id $3
  visit 3
  svstdt
  svendt
    4
;
format
  visit z2.
  svstdt
  svendt
    yymmddd10.
;
input id visit (svstdt svendt) (:yymmdd10.);
datalines;
M01 01 2019-09-26 2019-09-26
M01 02 2019-09-26 2019-09-26
M01 02 2019-10-15 2019-10-15
M01 03 2019-10-19 2019-10-19
M01 04 2019-10-23 2019-10-23
M01 05 2019-11-03 2019-11-03
M02 01 2019-09-12 2019-09-12
M02 02 2019-09-23 2019-09-23
M02 03 2019-09-26 2019-09-26
M02 04 2019-09-30 2019-09-30
M02 05 2019-10-08 2019-10-08
;

proc sql;
create table want as
select
  a.*,
  vs.vstestcd,
  vs.vsdt
from (
  select
    id,
    max(visit) as visit format=z2.,
    svstdt,
    svendt
  from sv
  group by id, svstdt, svendt
  having sv.visit = calculated visit
) a left join vs
on a.id = vs.id and a.svstdt &amp;lt;= vs.vsdt &amp;lt;= a.svendt;
quit;

proc print data=want noobs;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;(I added an additional observation in sv to create your "double" scenario, and changed visit to numeric, to allow use of the max() summary function)&lt;/P&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;PRE&gt;id     visit        svstdt        svendt    vstestcd          vsdt

M01     02      2019-10-15    2019-10-15       AA       2019-10-15
M01     04      2019-10-23    2019-10-23       AA       2019-10-23
M01     02      2019-09-26    2019-09-26       BB       2019-09-26
M01     02      2019-09-26    2019-09-26       AA       2019-09-26
M01     02      2019-10-15    2019-10-15       BB       2019-10-15
M01     03      2019-10-19    2019-10-19                         .
M01     05      2019-11-03    2019-11-03                         .
M02     01      2019-09-12    2019-09-12       BB       2019-09-12
M02     01      2019-09-12    2019-09-12       AA       2019-09-12
M02     04      2019-09-30    2019-09-30       AA       2019-09-30
M02     02      2019-09-23    2019-09-23       BB       2019-09-23
M02     02      2019-09-23    2019-09-23       AA       2019-09-23
M02     03      2019-09-26    2019-09-26                         .
M02     05      2019-10-08    2019-10-08                         .
&lt;/PRE&gt;
&lt;P&gt;As you can see, on 2019-09-26 only visit 02 is taken.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 09:49:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-hash-hiter-do-not-map-by-key/m-p/605347#M175678</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-11-19T09:49:48Z</dc:date>
    </item>
  </channel>
</rss>

