<?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: Input with unique ID in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128011#M26128</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what if it's given that there are three fixed ID (i.e. A,B,C) but unknown numbers of var? Will it be possible to use the array + do loop to complete it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 07 Jul 2013 05:33:29 GMT</pubDate>
    <dc:creator>yuen68</dc:creator>
    <dc:date>2013-07-07T05:33:29Z</dc:date>
    <item>
      <title>Input with unique ID</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128006#M26123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the raw dataset,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID value&lt;/P&gt;&lt;P&gt;A 1&lt;/P&gt;&lt;P&gt;A 2&lt;/P&gt;&lt;P&gt;A 3&lt;/P&gt;&lt;P&gt;B 1&lt;/P&gt;&lt;P&gt;B 2&lt;/P&gt;&lt;P&gt;B 3&lt;/P&gt;&lt;P&gt;C 1&lt;/P&gt;&lt;P&gt;C 2&lt;/P&gt;&lt;P&gt;C 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expected output:&lt;/P&gt;&lt;P&gt;ID Var1 Var2 Var3&lt;/P&gt;&lt;P&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&lt;/P&gt;&lt;P&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&lt;/P&gt;&lt;P&gt;C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could I make it by one data step? I have tried array but still cant figure out the correct assignment.... May there be any hints on inputting data like this?&lt;/P&gt;&lt;P&gt;Million thankss.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jul 2013 17:40:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128006#M26123</guid>
      <dc:creator>yuen68</dc:creator>
      <dc:date>2013-07-06T17:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Input with unique ID</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128007#M26124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you already have the data use PROC TRANSPOSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc transpose data=have prefix=var out=want ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; by id ;&lt;/P&gt;&lt;P&gt;var value;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jul 2013 18:37:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128007#M26124</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-07-06T18:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Input with unique ID</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128008#M26125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your suggestion Tom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May I use a single data step to do so except the proc transpose?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jul 2013 18:52:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128008#M26125</guid>
      <dc:creator>yuen68</dc:creator>
      <dc:date>2013-07-06T18:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Input with unique ID</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128009#M26126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are two problems with trying to do this with a data step.&lt;/P&gt;&lt;P&gt;1) How large to make the array.&amp;nbsp; You could just set an upper limit to get the program to run.&lt;/P&gt;&lt;P&gt;2) How will the data step know when you have reached the end of the list of values for the current ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It might be easier to make a view to read the data and then call PROC TRANSPOSE or another data step to roll the data up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data have / view=have ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; infile sample ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; input id $ value ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc transpose data=have out=want prefix=var ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; by id;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; var&lt;/SPAN&gt; value ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data want ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; do i=1 by 1 until (last.id);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by id;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; array var (4);&amp;nbsp; * What value to use for size of the array??? ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var(i)=value ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; drop i value ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could do it in a single data step, but you will need to have the data in separate file so that you can tell when you have reached the end to enable outputting the last observation.&amp;nbsp; (note there is a trick with parmcards that can get around this if you must).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data want;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; infile sample end=eof truncover ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; input @1 next $ @@;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; id = next ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; array var (4) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; do i=1 by 1 until (next ne id ) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; input value ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var(i) = value;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if not eof then input next $ @@ ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else next = ' ';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; output;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; drop next value i ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jul 2013 19:36:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128009#M26126</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-07-06T19:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Input with unique ID</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128010#M26127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can refer to my and Arthur.T's paper at SGF , which demonstrate how to use data step instead of proc transpose :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US"&gt;&lt;A class="jive-link-external-small" href="http://support.sas.com/resources/papers/proceedings13/517-2013.pdf"&gt;http://support.sas.com/resources/papers/proceedings13/517-2013.pdf&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://support.sas.com/resources/papers/proceedings13/538-2013.pdf"&gt;http://support.sas.com/resources/papers/proceedings13/538-2013.pdf&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&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 have;
input ID $ value ;
cards;
A 1
A 2
A 3
B 1
B 2
B 3
C 1
C 2
C 3
;
run;
proc sql noprint;
 select max(value) into : n from have;
quit;
data want(keep=id var:);
 set have;
 by id;
 array v{*} var1-var%left(&amp;amp;n);
 retain var:;
 v{value}=value;
 if last.id then do; output; call missing(of v{*});end;
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;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: xia keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jul 2013 01:22:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128010#M26127</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2013-07-07T01:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Input with unique ID</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128011#M26128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what if it's given that there are three fixed ID (i.e. A,B,C) but unknown numbers of var? Will it be possible to use the array + do loop to complete it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jul 2013 05:33:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128011#M26128</guid>
      <dc:creator>yuen68</dc:creator>
      <dc:date>2013-07-07T05:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Input with unique ID</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128012#M26129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ksharp&lt;/P&gt;&lt;P&gt;I was looking forward to reading this paper which Art once mentioned in a post. Thanks for posting the link.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jul 2013 07:22:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128012#M26129</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-07-07T07:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Input with unique ID</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128013#M26130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are welcome. Actually , those papers were written almost by Arthur.T . I even have no time to review these papers and give some good advices.&lt;/P&gt;&lt;P&gt;Sorry , Arthur.T&amp;nbsp;&amp;nbsp; !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: xia keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jul 2013 07:34:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128013#M26130</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2013-07-07T07:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Input with unique ID</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128014#M26131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; Data work;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; input&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; ID $ Var1 @&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="; color: #008080; font-size: 10pt; font-family: Courier New;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / @3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; Var2 @&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; color: #008080; font-size: 10pt; font-family: Courier New;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / @3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; Var3;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;Cards;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;A 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;A 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;A 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;B 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;B 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;B 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;C 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;C 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;C 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jul 2013 14:47:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128014#M26131</guid>
      <dc:creator>LillianLee</dc:creator>
      <dc:date>2013-07-07T14:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Input with unique ID</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128015#M26132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;data hi;&lt;BR /&gt;input id$&amp;nbsp; val1 /&lt;BR /&gt;&amp;nbsp;&amp;nbsp; id$ val2 /&lt;BR /&gt;&amp;nbsp;&amp;nbsp; id$&amp;nbsp;&amp;nbsp; val3;&lt;/P&gt;&lt;P&gt;datalines;&lt;BR /&gt;A 1&lt;BR /&gt;A 2&lt;BR /&gt;A 3&lt;BR /&gt;B 1&lt;BR /&gt;B 2&lt;BR /&gt;B 3&lt;BR /&gt;C 1&lt;BR /&gt;C 2&lt;BR /&gt;C 3&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jul 2013 15:17:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Input-with-unique-ID/m-p/128015#M26132</guid>
      <dc:creator>NagendraKumarK</dc:creator>
      <dc:date>2013-07-08T15:17:35Z</dc:date>
    </item>
  </channel>
</rss>

