<?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 pass observations in data step in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209758#M38895</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want a macro to remove have2 dataset id's from have1 dataset. i need to pass the have2 id's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have1;&lt;/P&gt;&lt;P&gt;input id;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;101&lt;/P&gt;&lt;P&gt;102&lt;/P&gt;&lt;P&gt;103&lt;/P&gt;&lt;P&gt;104&lt;/P&gt;&lt;P&gt;105&lt;/P&gt;&lt;P&gt;106&lt;/P&gt;&lt;P&gt;107&lt;/P&gt;&lt;P&gt;108&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have2;&lt;/P&gt;&lt;P&gt;input id;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;101&lt;/P&gt;&lt;P&gt;104&lt;/P&gt;&lt;P&gt;105&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want&lt;/P&gt;&lt;P&gt;id&lt;/P&gt;&lt;P&gt;102&lt;/P&gt;&lt;P&gt;103&lt;/P&gt;&lt;P&gt;106&lt;/P&gt;&lt;P&gt;107&lt;/P&gt;&lt;P&gt;108&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;where id not in(how can i pass ids from have2 here);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 May 2015 18:48:43 GMT</pubDate>
    <dc:creator>kumarK</dc:creator>
    <dc:date>2015-05-05T18:48:43Z</dc:date>
    <item>
      <title>pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209758#M38895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want a macro to remove have2 dataset id's from have1 dataset. i need to pass the have2 id's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have1;&lt;/P&gt;&lt;P&gt;input id;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;101&lt;/P&gt;&lt;P&gt;102&lt;/P&gt;&lt;P&gt;103&lt;/P&gt;&lt;P&gt;104&lt;/P&gt;&lt;P&gt;105&lt;/P&gt;&lt;P&gt;106&lt;/P&gt;&lt;P&gt;107&lt;/P&gt;&lt;P&gt;108&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have2;&lt;/P&gt;&lt;P&gt;input id;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;101&lt;/P&gt;&lt;P&gt;104&lt;/P&gt;&lt;P&gt;105&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want&lt;/P&gt;&lt;P&gt;id&lt;/P&gt;&lt;P&gt;102&lt;/P&gt;&lt;P&gt;103&lt;/P&gt;&lt;P&gt;106&lt;/P&gt;&lt;P&gt;107&lt;/P&gt;&lt;P&gt;108&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;where id not in(how can i pass ids from have2 here);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 18:48:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209758#M38895</guid>
      <dc:creator>kumarK</dc:creator>
      <dc:date>2015-05-05T18:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209759#M38896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a solution for you, I added some extra output to show you how the merge works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have1;&lt;/P&gt;&lt;P&gt;input id;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;101&lt;/P&gt;&lt;P&gt;102&lt;/P&gt;&lt;P&gt;103&lt;/P&gt;&lt;P&gt;104&lt;/P&gt;&lt;P&gt;105&lt;/P&gt;&lt;P&gt;106&lt;/P&gt;&lt;P&gt;107&lt;/P&gt;&lt;P&gt;108&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have2;&lt;/P&gt;&lt;P&gt;input id;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;101&lt;/P&gt;&lt;P&gt;104&lt;/P&gt;&lt;P&gt;105&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want two three;&lt;/P&gt;&lt;P&gt;merge have1(in=a)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; have2(in=b);&lt;/P&gt;&lt;P&gt;by id;&lt;/P&gt;&lt;P&gt;if a and not b then output want;&lt;/P&gt;&lt;P&gt;if b and not a then output two;&lt;/P&gt;&lt;P&gt;if a and b then output three;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*data want;*/&lt;/P&gt;&lt;P&gt;/*set have;*/&lt;/P&gt;&lt;P&gt;/*where id not in(how can i pass ids from have2 here);*/&lt;/P&gt;&lt;P&gt;/*run;*/&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 18:59:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209759#M38896</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2015-05-05T18:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209760#M38897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for reply. I also thought merge concept but i dropped because of the heavy datasets.&lt;/P&gt;&lt;P&gt;I have around 20Gb dataset. Merging is taking too much time.&lt;/P&gt;&lt;P&gt;Is there any alternative way i can pass the observations.&lt;/P&gt;&lt;P&gt;I have read somewhere about Call Execute. Can anyone suggest about this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 04:32:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209760#M38897</guid>
      <dc:creator>kumarK</dc:creator>
      <dc:date>2015-05-06T04:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209761#M38898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ths way is quicker - no joining:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&amp;nbsp; value IDList&lt;/P&gt;&lt;P&gt;&amp;nbsp; 101, 104, 105 = 'N'&lt;/P&gt;&lt;P&gt;&amp;nbsp; other = 'Y'&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; where put(id, IDList.) = 'Y';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 05:28:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209761#M38898</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-05-06T05:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209762#M38899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have got time to play around a little. I am wondering if this is an option:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have1;&lt;/P&gt;&lt;P&gt;input id;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;101&lt;/P&gt;&lt;P&gt;102&lt;/P&gt;&lt;P&gt;103&lt;/P&gt;&lt;P&gt;104&lt;/P&gt;&lt;P&gt;105&lt;/P&gt;&lt;P&gt;106&lt;/P&gt;&lt;P&gt;107&lt;/P&gt;&lt;P&gt;108&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data _NULL_;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Length id 8.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Declare Hash H (Dataset:'have1',&lt;SPAN style="color: #3366ff;"&gt;Multidata:'y'&lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;&amp;nbsp; H.Definekey('id');&lt;/P&gt;&lt;P&gt;&amp;nbsp; H.Definedone();&lt;/P&gt;&lt;P&gt;&amp;nbsp; Call Missing (id);&lt;/P&gt;&lt;P&gt;&amp;nbsp; Do i=101,104,105; * enter id's of have2 here;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=H.Find(Key:i);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=H.Remove();&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; rc=H.Output(Dataset:'Want');&lt;/P&gt;&lt;P&gt;Run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;.. but RW9's solution seems to be better ..&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 07:52:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209762#M38899</guid>
      <dc:creator>user24feb</dc:creator>
      <dc:date>2015-05-06T07:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209763#M38900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have2 end=last;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if _n_=1 then call execute('data have; set have;');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call execute('if id="'||strip(id)||'" then delete;');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if last then call execute('run;');&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will generate code with if's for each row in have 2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 08:15:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209763#M38900</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-05-06T08:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209764#M38901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depends on the size of have2. If you can fit the Id's in a list to use in a "not in ()" condition, that's the fastest way because you only do one pass through the big dataset.&lt;/P&gt;&lt;P&gt;Then comes RW9's method, which will have more if's to execute and probably take slightly more time.&lt;/P&gt;&lt;P&gt;Third would be the use of a hash object, but if you run out of memory, sorting and merging is the best way to go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, your have dataset should already be sorted by ID at creation time if that is the main criteria to access it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 08:57:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209764#M38901</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2015-05-06T08:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209765#M38902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you are right.&amp;nbsp; I was just being lazy, just modify the generation to generate one in():&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;data _null_;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have2 end=last;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if _n_=1 then call execute('data have; set have; if id in ("||strip(id)||'"');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else call execute(',"'||strip(id)||'"');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if last then call execute(') &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt; then delete; &lt;/SPAN&gt;run;');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 09:12:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209765#M38902</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-05-06T09:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209766#M38903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table want as&lt;/P&gt;&lt;P&gt;select * from have1&lt;/P&gt;&lt;P&gt;where id not in&amp;nbsp; (select id from have2);&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 10:42:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209766#M38903</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2015-05-06T10:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209767#M38904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You really should take a look at Hash Table. If your table is big.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;data have1;
input id;
cards;
101
102
103
104
105
106
107
108
;
run;
 
data have2;
input id;
cards;
101
104
105
;
run;
data want;
if _n_ eq 1 then do;
 if 0 then set have2;
 declare hash h(dataset:'have2');
 h.definekey('id');
 h.definedone();
end;
set have1;
if h.check() ne 0;
run;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 12:01:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209767#M38904</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-05-06T12:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209768#M38905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks All for the suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please share some good references on Hash Table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 17:59:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209768#M38905</guid>
      <dc:creator>kumarK</dc:creator>
      <dc:date>2015-05-06T17:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209769#M38906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I recently asked the same question, here are some resources to review:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings10/151-2010.pdf" title="http://support.sas.com/resources/papers/proceedings10/151-2010.pdf"&gt;http://support.sas.com/resources/papers/proceedings10/151-2010.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://www2.sas.com/proceedings/forum2007/271-2007.pdf" title="http://www2.sas.com/proceedings/forum2007/271-2007.pdf"&gt;http://www2.sas.com/proceedings/forum2007/271-2007.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.nesug.org/proceedings/nesug10/bb/bb01.pdf" title="http://www.nesug.org/proceedings/nesug10/bb/bb01.pdf"&gt;http://www.nesug.org/proceedings/nesug10/bb/bb01.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.nesug.org/proceedings/nesug06/dm/da07.pdf" title="http://www.nesug.org/proceedings/nesug06/dm/da07.pdf"&gt;http://www.nesug.org/proceedings/nesug06/dm/da07.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a003143739.htm" title="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a003143739.htm"&gt;SAS(R) 9.2 Language Reference: Dictionary, Fourth Edition&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 18:16:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209769#M38906</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2015-05-06T18:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: pass observations in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209770#M38907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look here:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lrcon/65287/HTML/default/viewer.htm#n1b4cbtmb049xtn1vh9x4waiioz4.htm" title="http://support.sas.com/documentation/cdl/en/lrcon/65287/HTML/default/viewer.htm#n1b4cbtmb049xtn1vh9x4waiioz4.htm"&gt;SAS(R) 9.3 Language Reference: Concepts, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2015 05:36:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/pass-observations-in-data-step/m-p/209770#M38907</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2015-05-07T05:36:54Z</dc:date>
    </item>
  </channel>
</rss>

