<?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: Assign Sequential Numbers in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/466385#M30233</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/183918"&gt;@s_manoj&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;LOL! You're a tiny bit late with your answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On a more serious note: It's a "problem" of this forum that old questions don't get automatically closed and write protected after a certain amount of time.&lt;/P&gt;</description>
    <pubDate>Thu, 31 May 2018 10:27:32 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2018-05-31T10:27:32Z</dc:date>
    <item>
      <title>Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60976#M6174</link>
      <description>I would like to know how to assingn sequential numbers for a multi-value field in SAS EG.  Here is an example:&lt;BR /&gt;
&lt;BR /&gt;
Name,                       PhoneNumbers,                    &lt;U&gt;PhoneSequentialNo&lt;/U&gt;&lt;BR /&gt;
John Smith,               111-222-3333,                          &lt;U&gt;Phone1&lt;/U&gt;&lt;BR /&gt;
John Smith,               123-525-8888,                          &lt;U&gt;Phone2&lt;/U&gt;&lt;BR /&gt;
John Smith,               222-444-9999,                         &lt;U&gt;Phone3&lt;/U&gt;&lt;BR /&gt;
Mary Adams,             333-888-7777,                          &lt;U&gt;Phone1&lt;/U&gt;&lt;BR /&gt;
Mary Adams,             337-841-1111,                          &lt;U&gt;Phone2&lt;/U&gt;</description>
      <pubDate>Mon, 02 May 2011 13:45:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60976#M6174</guid>
      <dc:creator>ct</dc:creator>
      <dc:date>2011-05-02T13:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60977#M6175</link>
      <description>If I understand your requirements correctly, this can be achieved in a code block as follows.&lt;BR /&gt;
&lt;BR /&gt;
data have ; &lt;BR /&gt;
    length Name $50 PhoneNumbers $12 ;&lt;BR /&gt;
    input Name $ PhoneNumbers $ ;&lt;BR /&gt;
    infile cards dlm=',' missover ;&lt;BR /&gt;
cards;&lt;BR /&gt;
John Smith,111-222-3333&lt;BR /&gt;
John Smith,123-525-8888&lt;BR /&gt;
John Smith,222-444-9999&lt;BR /&gt;
Mary Adams,333-888-7777&lt;BR /&gt;
Mary Adams,337-841-1111&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc sort data=have out=have_sorted ;&lt;BR /&gt;
    by Name ;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data want ;&lt;BR /&gt;
    length PhoneSequentialNo $10 ;&lt;BR /&gt;
    set have ;&lt;BR /&gt;
    by Name ;&lt;BR /&gt;
    if first.Name then _count=1 ;&lt;BR /&gt;
    else _count+1 ;&lt;BR /&gt;
&lt;BR /&gt;
    PhoneSequentialNo=cats("Phone",_count) ;&lt;BR /&gt;
    &lt;BR /&gt;
    drop _count ;&lt;BR /&gt;
run ;</description>
      <pubDate>Tue, 03 May 2011 04:35:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60977#M6175</guid>
      <dc:creator>NickT</dc:creator>
      <dc:date>2011-05-03T04:35:34Z</dc:date>
    </item>
    <item>
      <title>Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60978#M6176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thank you NickT.&amp;nbsp; Now, I would like to know how I can accomplish this task in Enterprise Guide without writing the code.&amp;nbsp; Would somebody help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2011 14:47:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60978#M6176</guid>
      <dc:creator>ct</dc:creator>
      <dc:date>2011-07-06T14:47:03Z</dc:date>
    </item>
    <item>
      <title>Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60979#M6177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In EGuide, it requires multiple tasks.&amp;nbsp; First you use the rank task to assign the sequential numbers with name (you may have to fiddle with the options so it won't use tied ranks).&amp;nbsp; Then you do the concatenation in a Query Buider using the advanced expression builder.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2011 15:12:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60979#M6177</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2011-07-06T15:12:38Z</dc:date>
    </item>
    <item>
      <title>Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60980#M6178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thank you Doc.&amp;nbsp; To use the Rank task, I need to set data type of PhoneNumbers to numeric.&amp;nbsp; Am I correct?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2011 15:36:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60980#M6178</guid>
      <dc:creator>ct</dc:creator>
      <dc:date>2011-07-06T15:36:56Z</dc:date>
    </item>
    <item>
      <title>Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60981#M6179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't recall.&amp;nbsp; check the icon next to the role.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2011 15:55:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60981#M6179</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2011-07-06T15:55:46Z</dc:date>
    </item>
    <item>
      <title>Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60982#M6180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; The icon was numeric only.&amp;nbsp; I'll change the type to numeric and run.&amp;nbsp; Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2011 16:11:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60982#M6180</guid>
      <dc:creator>ct</dc:creator>
      <dc:date>2011-07-06T16:11:09Z</dc:date>
    </item>
    <item>
      <title>Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60983#M6181</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;You can also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Using query builder, select the 'Name' variable and click 'select distinct values only' to create a new dataset.&lt;/P&gt;&lt;P&gt;2. User query builder and add a computed column 'count' defined with the function 'monotonic()'&lt;/P&gt;&lt;P&gt;3. Use query builder to merge back with the orginal dataset, and concatenate "Phone" and count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This means you dont have to change the phone number to numeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jul 2011 12:44:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60983#M6181</guid>
      <dc:creator>nrose</dc:creator>
      <dc:date>2011-07-09T12:44:47Z</dc:date>
    </item>
    <item>
      <title>Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60984#M6182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Nick.&amp;nbsp; I created the computed column, Count1, with the function, monotonic(t1.Name).&amp;nbsp; The Count1 column assigned sequential numbers, but they were for an entire data set as shown below.&amp;nbsp; In other words, it didn't start from 1 for Mary Adams.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Name&lt;/SPAN&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;&amp;nbsp;&amp;nbsp; &lt;SPAN style="text-decoration: underline;"&gt;Phone&lt;/SPAN&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;&amp;nbsp;&amp;nbsp; &lt;SPAN style="text-decoration: underline;"&gt;Count1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;John Smith&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 111-222-3333&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; 1&lt;/P&gt;&lt;P&gt;John Smith&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 123-525-8888&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; 2 &lt;/P&gt;&lt;P&gt;John Smith&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 222-444-9999&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;/P&gt;&lt;P&gt;Mary Adams&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 333-888-7777&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; 4&lt;/P&gt;&lt;P&gt;Mary Adams&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 337-841-1111&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 13:30:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60984#M6182</guid>
      <dc:creator>ct</dc:creator>
      <dc:date>2011-07-11T13:30:07Z</dc:date>
    </item>
    <item>
      <title>Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60985#M6183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The trick is to first create a datasets with distinct values for the 'Name' variable, then apply the monotonic function and merge back to the original dataset. This means having two nodes in EG, but I cant think of a way to do it in one step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope&amp;nbsp; thats clearer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 21:16:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60985#M6183</guid>
      <dc:creator>nrose</dc:creator>
      <dc:date>2011-07-11T21:16:12Z</dc:date>
    </item>
    <item>
      <title>Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60986#M6184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Actually, my solution does not address your problem. Apologies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 21:25:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60986#M6184</guid>
      <dc:creator>nrose</dc:creator>
      <dc:date>2011-07-11T21:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60987#M6185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What you can do is, starting from the outcome of the table that you have with created with monotonic, the following:&lt;/P&gt;&lt;P&gt;Determine the minimum value of count1 per name. In the results that you displayed that would be 1 for John Smith and 4 for Mary Adams.&lt;/P&gt;&lt;P&gt;Merge this info with the original outcome and compute a column that consists of the difference between count1, the minimum value and add 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would result in:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline; font-family: courier new,courier;"&gt;Name&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Count1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Min_Count1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SeqNumber&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;John Smith&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; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;John Smith&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; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;John Smith&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&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Mary Adams&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; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;Mary Adams&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; 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2011 14:48:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60987#M6185</guid>
      <dc:creator>Resa</dc:creator>
      <dc:date>2011-07-14T14:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60988#M6186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thank you Risa.&amp;nbsp; It worked perfectly.&amp;nbsp; After assigning the numbers, I could use the Split function.&amp;nbsp; Thank you so much! &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2011 15:25:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/60988#M6186</guid>
      <dc:creator>ct</dc:creator>
      <dc:date>2011-07-14T15:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/316713#M21329</link>
      <description>&lt;P&gt;Yes, that worked and it is ingenious in its simplicity. &amp;nbsp;Thank you. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2016 14:31:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/316713#M21329</guid>
      <dc:creator>Andrew_Walk_WCC</dc:creator>
      <dc:date>2016-12-05T14:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/466358#M30229</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;This one can work out mostly,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data x;
set datasetname;
by name notsorted;
if first.name then sequence = 1;
else sequence + 1;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 31 May 2018 08:23:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/466358#M30229</guid>
      <dc:creator>s_manoj</dc:creator>
      <dc:date>2018-05-31T08:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Sequential Numbers</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/466385#M30233</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/183918"&gt;@s_manoj&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;LOL! You're a tiny bit late with your answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On a more serious note: It's a "problem" of this forum that old questions don't get automatically closed and write protected after a certain amount of time.&lt;/P&gt;</description>
      <pubDate>Thu, 31 May 2018 10:27:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Assign-Sequential-Numbers/m-p/466385#M30233</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-05-31T10:27:32Z</dc:date>
    </item>
  </channel>
</rss>

