<?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: i want a code for below data in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/i-want-a-code-for-below-data/m-p/187291#M47539</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would it be a good idea to make the ID character?&amp;nbsp; It might help to indicate the purpose and prevent it from being used as a measure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Apr 2014 11:50:04 GMT</pubDate>
    <dc:creator>data_null__</dc:creator>
    <dc:date>2014-04-21T11:50:04Z</dc:date>
    <item>
      <title>i want a code for below data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/i-want-a-code-for-below-data/m-p/187288#M47536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;suppose dataset contains variable 'name'&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt; text-decoration: underline;"&gt;name &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;sri &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ram &lt;/P&gt;&lt;P&gt;ragu&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;f&lt;/P&gt;&lt;P&gt;g&lt;/P&gt;&lt;P&gt;h&lt;/P&gt;&lt;P&gt;i&lt;/P&gt;&lt;P&gt;j&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;quest: we want to create another dataset in way that we should create another vaiable 'id'&amp;nbsp; i want to assign values in an order automatically to variable 'id' like for 1st variable 101 ,2nd variable 102&amp;nbsp; and so on&amp;nbsp; if we have 100 variable values the first 'id' value should be 101 and last 'id' variable should be 200&amp;nbsp;&amp;nbsp; &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;P&gt;&lt;/P&gt;&lt;P&gt;name id&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;sri&amp;nbsp; 101 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ram&amp;nbsp; 102&lt;/P&gt;&lt;P&gt;ragu 103&lt;/P&gt;&lt;P&gt;a&amp;nbsp;&amp;nbsp;&amp;nbsp; 104&lt;/P&gt;&lt;P&gt;b&amp;nbsp;&amp;nbsp;&amp;nbsp; 105&lt;/P&gt;&lt;P&gt;c&amp;nbsp;&amp;nbsp;&amp;nbsp; 106 &lt;/P&gt;&lt;P&gt;d&amp;nbsp;&amp;nbsp;&amp;nbsp; 107&lt;/P&gt;&lt;P&gt;e&amp;nbsp;&amp;nbsp;&amp;nbsp; 108&lt;/P&gt;&lt;P&gt;f&amp;nbsp;&amp;nbsp;&amp;nbsp; 109&lt;/P&gt;&lt;P&gt;g&amp;nbsp;&amp;nbsp;&amp;nbsp; 110&lt;/P&gt;&lt;P&gt;h&amp;nbsp;&amp;nbsp;&amp;nbsp; 111&lt;/P&gt;&lt;P&gt;i&amp;nbsp;&amp;nbsp;&amp;nbsp; 112&lt;/P&gt;&lt;P&gt;j&amp;nbsp;&amp;nbsp;&amp;nbsp; 113&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;i &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 10:43:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/i-want-a-code-for-below-data/m-p/187288#M47536</guid>
      <dc:creator>chittamsri1_gmail_com</dc:creator>
      <dc:date>2014-04-21T10:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: i want a code for below data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/i-want-a-code-for-below-data/m-p/187289#M47537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hope this works for the above problem.&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;if _N_=1 then id=101;&lt;/P&gt;&lt;P&gt;else id+1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sudeer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 11:01:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/i-want-a-code-for-below-data/m-p/187289#M47537</guid>
      <dc:creator>Chrishi</dc:creator>
      <dc:date>2014-04-21T11:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: i want a code for below data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/i-want-a-code-for-below-data/m-p/187290#M47538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't understand why would you do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;retain n 100;&lt;/P&gt;&lt;P&gt;n+1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 11:23:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/i-want-a-code-for-below-data/m-p/187290#M47538</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-04-21T11:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: i want a code for below data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/i-want-a-code-for-below-data/m-p/187291#M47539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would it be a good idea to make the ID character?&amp;nbsp; It might help to indicate the purpose and prevent it from being used as a measure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 11:50:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/i-want-a-code-for-below-data/m-p/187291#M47539</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-04-21T11:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: i want a code for below data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/i-want-a-code-for-below-data/m-p/187292#M47540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2014 10:17:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/i-want-a-code-for-below-data/m-p/187292#M47540</guid>
      <dc:creator>chittamsri1_gmail_com</dc:creator>
      <dc:date>2014-04-22T10:17:17Z</dc:date>
    </item>
  </channel>
</rss>

