<?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 How to create a new column based on another ordinal column by groups in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806162#M317582</link>
    <description>&lt;P&gt;I have a sample longitudinal data of measurements with three columns (ID, Time, and Level) and 10 rows. ID1 has 6 measures and ID2 has 4 measures. The value has three ordinal levels of Low &amp;lt; Medium &amp;lt; High.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp;Time&amp;nbsp; Level&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Low&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Low&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;High&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Low&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;High&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;High&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create&amp;nbsp; a new column Level1. This new column is created based on Level by a rule: if Level moves from lower level to higher level (i.e., Low to Medium), then Level1 is the same as Level. But if Level moves from higher level to lower level (i.e., Medium to Low) then Level1 keeps all the rest as higher level (Medium) until Level moves to a higher one.&lt;/P&gt;&lt;P&gt;Here for ID1, from Time 1 to Time 4, Level moves from Medium to Low, so Level1 keep all as Medium. Time 5 and 6, Level moves to High, then Level1 is the same as Level.&lt;/P&gt;&lt;P&gt;For ID2, Time 1 and 2, Medium to Low, Level1 keeps all as Medium, and&amp;nbsp; for Time 3 and 4, both are High that is higher than Medium, Level1 is the same as Level.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; Time&amp;nbsp; &amp;nbsp;Level&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Level1&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Medium&amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Medium&amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Low&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Low&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Medium&amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; High&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;High&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Medium&amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Low&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; High&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; High&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; 4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; High&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; High&lt;/P&gt;</description>
    <pubDate>Wed, 06 Apr 2022 08:57:25 GMT</pubDate>
    <dc:creator>SeaMoon_168</dc:creator>
    <dc:date>2022-04-06T08:57:25Z</dc:date>
    <item>
      <title>How to create a new column based on another ordinal column by groups</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806162#M317582</link>
      <description>&lt;P&gt;I have a sample longitudinal data of measurements with three columns (ID, Time, and Level) and 10 rows. ID1 has 6 measures and ID2 has 4 measures. The value has three ordinal levels of Low &amp;lt; Medium &amp;lt; High.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp;Time&amp;nbsp; Level&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Low&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Low&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; 6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;High&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Low&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;High&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;High&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create&amp;nbsp; a new column Level1. This new column is created based on Level by a rule: if Level moves from lower level to higher level (i.e., Low to Medium), then Level1 is the same as Level. But if Level moves from higher level to lower level (i.e., Medium to Low) then Level1 keeps all the rest as higher level (Medium) until Level moves to a higher one.&lt;/P&gt;&lt;P&gt;Here for ID1, from Time 1 to Time 4, Level moves from Medium to Low, so Level1 keep all as Medium. Time 5 and 6, Level moves to High, then Level1 is the same as Level.&lt;/P&gt;&lt;P&gt;For ID2, Time 1 and 2, Medium to Low, Level1 keeps all as Medium, and&amp;nbsp; for Time 3 and 4, both are High that is higher than Medium, Level1 is the same as Level.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; Time&amp;nbsp; &amp;nbsp;Level&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Level1&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Medium&amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Medium&amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Low&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Low&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Medium&amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; 6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; High&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;High&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Medium&amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Low&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Medium&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; High&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; High&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; 4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; High&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; High&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2022 08:57:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806162#M317582</guid>
      <dc:creator>SeaMoon_168</dc:creator>
      <dc:date>2022-04-06T08:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to keep the first value by two groups using SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806165#M317584</link>
      <description>&lt;P&gt;Are Moderate and Severe the &lt;STRONG&gt;only &lt;/STRONG&gt;values that appear in Level? Is the variable Level ever missing (blank)?&lt;/P&gt;
&lt;P&gt;If other or missing values appear in the variable Level what are the&amp;nbsp; rules.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="5" color="#FF00FF"&gt;&lt;STRONG&gt;Note to later readers: OP original example data only had Moderate and Severe values and significantly changed the data after several questions had been asked. So many of the questions may not make sense when compared to the final version of the "question".&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have any other variable in this set that is supposed to have the order of these records? This could be very important if all of your data for ID is not grouped in order at the moment, or if other data is to be appended and processed with the same rules.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This statement ". For ID2, since all move from Moderate to Severe, Level is the same as Level1." is very confusing. First because the NEW variable is Level1 and this sort of implies that Level is based on Level1 and worse, this does not show the same result as rows 3 and 4 for Id 1 and I can't tell from you description why.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why does your topic Subject line say "Keep first value". There is nothing in this description that indicates "first value" is kept at all.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is Row actually a variable in the data set or just shown for description purposes?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2022 19:48:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806165#M317584</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-04-06T19:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to keep the first value by two groups using SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806166#M317585</link>
      <description>&lt;P&gt;I cannot edit the post? First time post here. Yes, You can consider Level as a ordinal variable that include three variables Low, Medium and High. There is another variable Time I should include. So for ID1, Time is listed as 1 to 6 and for ID2, Time is listed as 1 to 4.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2022 08:50:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806166#M317585</guid>
      <dc:creator>SeaMoon_168</dc:creator>
      <dc:date>2022-04-06T08:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to keep the first value by two groups using SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806168#M317587</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/382088"&gt;@SeaMoon_168&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I cannot edit the post?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your post should show three vertical dates near the upper left corner in front of the subject line. Click on them to bring up a context menu that will let you edit a post&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 22:25:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806168#M317587</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-04-05T22:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to keep the first value by two groups using SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806173#M317590</link>
      <description>&lt;P&gt;Thank you for your advice on how to edit and improve the post. I appreciate if you could give me some help on how to resolve this problem.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 22:47:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806173#M317590</guid>
      <dc:creator>SeaMoon_168</dc:creator>
      <dc:date>2022-04-05T22:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to keep the first value by two groups using SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806174#M317591</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/382088"&gt;@SeaMoon_168&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you for your advice on how to edit and improve the post. I appreciate if you could give me some help on how to resolve this problem.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Still think that you need to provide a bit more in the way of &lt;STRONG&gt;rules&lt;/STRONG&gt; , not just an example, to describe why ID 2 time 9 and 10 are not Severe as is the case for ID 1 at time 3 and 4. Something must be different but you have not provided a clear description of what that would allow programming the rule.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 23:09:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806174#M317591</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-04-05T23:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to keep the first value by two groups using SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806175#M317592</link>
      <description>&lt;P&gt;As I mentioned, for ID1 from Medium to Low so keep the rest as Medium. Does it make sense?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2022 08:52:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806175#M317592</guid>
      <dc:creator>SeaMoon_168</dc:creator>
      <dc:date>2022-04-06T08:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to keep the first value by two groups using SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806176#M317593</link>
      <description>&lt;P&gt;I am sorry I just found I entered the wrong level to Level1 (Time 3 and 4) for ID2 and revised them. Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 23:15:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806176#M317593</guid>
      <dc:creator>SeaMoon_168</dc:creator>
      <dc:date>2022-04-05T23:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new column based on another ordinal column by groups</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806251#M317624</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input ID   Time  Level $;
cards; 
1      1       Moderate
1      2       Moderate
1      3       Severe
1      4       Severe
1      5       Moderate
1      6       Severe
2      1       Moderate
2      2       Moderate
2      3       Severe
2      4       Severe
;


proc format;
invalue ifmt
'Moderate'=1
'Severe'=2
;
value fmt
1='Moderate'
2='Severe'
;
run;

data want;
 set have;
 by id;
 retain rank;
 if first.id then call missing(rank);
 rank=max(rank,input(Level,ifmt.));
 Level1=put(rank,fmt.);
 drop rank;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Apr 2022 11:51:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806251#M317624</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-04-06T11:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a new column based on another ordinal column by groups</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806279#M317634</link>
      <description>&lt;P&gt;You are genius. The result using your code is the exact what I expect. Many many thanks&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2022 13:46:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-new-column-based-on-another-ordinal-column-by/m-p/806279#M317634</guid>
      <dc:creator>SeaMoon_168</dc:creator>
      <dc:date>2022-04-06T13:46:18Z</dc:date>
    </item>
  </channel>
</rss>

