<?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 filliong out missing data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/filliong-out-missing-data/m-p/592666#M169953</link>
    <description>&lt;P&gt;Please see the attachment.&lt;/P&gt;</description>
    <pubDate>Mon, 30 Sep 2019 13:40:10 GMT</pubDate>
    <dc:creator>mauri0623</dc:creator>
    <dc:date>2019-09-30T13:40:10Z</dc:date>
    <item>
      <title>filliong out missing data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/filliong-out-missing-data/m-p/592666#M169953</link>
      <description>&lt;P&gt;Please see the attachment.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 13:40:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/filliong-out-missing-data/m-p/592666#M169953</guid>
      <dc:creator>mauri0623</dc:creator>
      <dc:date>2019-09-30T13:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: filliong out missing data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/filliong-out-missing-data/m-p/592673#M169957</link>
      <description>&lt;P&gt;You can join on the common column, or you can create formats from the columns in the wide dataset, or you can load the wide dataset into a hash object. It depends on dataset sizes and how you process the "small" dataset.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 13:54:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/filliong-out-missing-data/m-p/592673#M169957</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-09-30T13:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: filliong out missing data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/filliong-out-missing-data/m-p/592678#M169958</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data table1;
input ALC $ 1-21 TAS $ 10-23 ODN $ 25-41 FundingCode $ 43-48;
datalines;
89000001 08919/200243   89303019SEA000002 20EA01
89000001 089X0243       89303019SAU000016 20AU01
89000001 089-17/20-0321 89243419SEE000038 20GO01
89000001 089-17/20-0243 89303019SLM000012 20LM01
89000001 089-X-0319     89243219SNE000007 20ID01
;

data table2;
input ALC $ 1-21 TAS $ 10-23 ODN $ 25-41 FundingCode $ 43-48;
datalines;
                                          20EA01
                                          20AU01
                                          20GO01
                                          20LM01
                                          20ID01
;

data want(drop=rc);
    if _N_=1 then do;
        declare hash h(dataset:'table1');
        h.definekey('FundingCode');
        h.definedata('ALC', 'TAS', 'ODN');
        h.definedone();
    end;

    set table2;

    rc=h.find();
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 30 Sep 2019 14:03:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/filliong-out-missing-data/m-p/592678#M169958</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-09-30T14:03:42Z</dc:date>
    </item>
  </channel>
</rss>

