<?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: relegating the levels of a variable when both conditions do not meet in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833701#M329592</link>
    <description>&lt;P&gt;Hi again Freelance,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your further response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No, I still need the original conditions for each level of var4 but if both original conditions are not met the record needs to be assigned to be one level down.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any further comments or do I need to change the grouping?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Beatrice&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Sep 2022 18:19:06 GMT</pubDate>
    <dc:creator>BeatriceWang</dc:creator>
    <dc:date>2022-09-15T18:19:06Z</dc:date>
    <item>
      <title>relegating the levels of a variable when both conditions do not meet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833582#M329532</link>
      <description>&lt;P&gt;Happy Thursday Everyone!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nice to e-meet you all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two conditions to define the level of a variable (please see below screenshot).&amp;nbsp;What I want is when both&amp;nbsp;conditions for var2 and var3 do not meet the level of var4 will go down one level, for example, from level 5 to level 4 and so on.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is how I define the level of var4:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BeatriceWang_0-1663244915383.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/75277i940925240E2333E2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BeatriceWang_0-1663244915383.png" alt="BeatriceWang_0-1663244915383.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However from the output the display does not show what I want (please see below screen shot).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BeatriceWang_1-1663246588772.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/75279iE8852D45E4A539F3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BeatriceWang_1-1663246588772.png" alt="BeatriceWang_1-1663246588772.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would very much appreciate if you can advise how I can change my SAS code so that I can achieve what I want to display and apologize if the answer is obvious.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Beatrice&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2022 13:06:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833582#M329532</guid>
      <dc:creator>BeatriceWang</dc:creator>
      <dc:date>2022-09-15T13:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: relegating the levels of a variable when both conditions do not meet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833583#M329533</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't see any obvious errors in your code, but it certainly may not be doing what you intend.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's hard to interpret the output you showed.&amp;nbsp; One way to check this sort of algorithm is to use PROC FREQ to make a "Check Table" that shows the values of each variable.&amp;nbsp; So you could run:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=have;
  tables var1*var2*var3*var4/missing list;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you have many unique values, you can use a format to limit the number of rows in the table (e.g. format all the variables as integers).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A table like that is very helpful id de-bugging this sort of situation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2022 13:17:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833583#M329533</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2022-09-15T13:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: relegating the levels of a variable when both conditions do not meet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833608#M329551</link>
      <description>&lt;P&gt;Please post code as TEXT, preferably in a text box opened with the &amp;lt;/&amp;gt; icon above the message window. Copy from your editor, open the box and paste the text.&lt;/P&gt;
&lt;P&gt;Show what you actually expect as a result of the data manipulation, best is if you provide example data as a data step, again pasted into a text box, as we cannot write code to read a picture. And show the entire data step. Issues might arise with other code than the bit you think it does.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your "output" is basically useless as we do not know how you made it or what the input for that actually was, much less what the input should be.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you do not state in words what the conditions are in words it is somewhat difficult to actually see if you code meets those conditions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2022 14:26:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833608#M329551</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-09-15T14:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: relegating the levels of a variable when both conditions do not meet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833614#M329555</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/387104"&gt;@BeatriceWang&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These large values are very well consistent with your IF conditions. Note that they specify unconditional lower bounds for VAR2 and VAR3, but only conditional upper bounds. For example, an observation with VAR4=3 must satisfy the condition VAR2&amp;gt;=24 and VAR3&amp;gt;=6 -- these are the lower bounds. But for the next level VAR4=4 both conditions VAR2&amp;gt;=68 &lt;U&gt;and&lt;/U&gt; VAR3&amp;gt;=17 must be met. So, if only &lt;EM&gt;one&lt;/EM&gt; of these two conditions is met, VAR4 is definitely not 4, but can still be 3 although the other condition is met. In other words, theoretically VAR2 &lt;EM&gt;alone&lt;/EM&gt; can be arbitrarily large, regardless of VAR4, and the same is true for VAR3 &lt;EM&gt;alone&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you sketch the areas for the VAR4 values in an x-y coordinate system (with x=VAR2 and y=VAR3), you'll see this immediately:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="areaplot.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/75286iF1EF25D9A2C7B280/image-size/large?v=v2&amp;amp;px=999" role="button" title="areaplot.png" alt="areaplot.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2022 15:45:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833614#M329555</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2022-09-15T15:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: relegating the levels of a variable when both conditions do not meet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833654#M329573</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733" target="_blank" rel="noopener"&gt;FreelanceReinhard,&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your explanation. Yes. you are right.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The requirement is if both conditions for var2 and var3 are not met the var4 will be assigned to one level down.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you able to suggest how I can change my sas code to meet the requirement and display correctly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Beatrice&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2022 15:57:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833654#M329573</guid>
      <dc:creator>BeatriceWang</dc:creator>
      <dc:date>2022-09-15T15:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: relegating the levels of a variable when both conditions do not meet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833662#M329575</link>
      <description>&lt;P&gt;So you mean: &lt;EM&gt;Only&lt;/EM&gt; if both conditions are not met, var4 gets the next lower value?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if n(var2, var3)&amp;lt;2           then var4=.;
else if var2&amp;lt; 12 and var3&amp;lt; 3 then var4=1;
else if var2&amp;lt; 24 and var3&amp;lt; 6 then var4=2;
else if var2&amp;lt; 68 and var3&amp;lt;17 then var4=3;
else if var2&amp;lt;128 and var3&amp;lt;32 then var4=4;
else                              var4=5;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="areaplot2.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/75289i818D112DA5A77A6C/image-size/large?v=v2&amp;amp;px=999" role="button" title="areaplot2.png" alt="areaplot2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2022 16:33:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833662#M329575</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2022-09-15T16:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: relegating the levels of a variable when both conditions do not meet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833701#M329592</link>
      <description>&lt;P&gt;Hi again Freelance,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your further response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No, I still need the original conditions for each level of var4 but if both original conditions are not met the record needs to be assigned to be one level down.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any further comments or do I need to change the grouping?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Beatrice&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2022 18:19:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833701#M329592</guid>
      <dc:creator>BeatriceWang</dc:creator>
      <dc:date>2022-09-15T18:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: relegating the levels of a variable when both conditions do not meet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833702#M329593</link>
      <description>&lt;P&gt;Hi Quentin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your suggestion for bebugging and your sas code are helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Beatrice&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2022 18:20:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833702#M329593</guid>
      <dc:creator>BeatriceWang</dc:creator>
      <dc:date>2022-09-15T18:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: relegating the levels of a variable when both conditions do not meet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833726#M329598</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/387104"&gt;@BeatriceWang&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;(...) if both original conditions are not met the record needs to be assigned to be one level down.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Interestingly, this particular requirement is met by &lt;EM&gt;both&lt;/EM&gt;&amp;nbsp;sets of criteria which I depicted in my earlier posts, isn't it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure I understand why you say "one level &lt;EM&gt;down&lt;/EM&gt;" -- as if there was some &lt;EM&gt;original&lt;/EM&gt; level of VAR4 that is &lt;EM&gt;changed&lt;/EM&gt; under certain conditions. Do your criteria uniquely determine the value of VAR4, given the values of VAR2 and VAR3 (and VAR1)? If so, please enter the desired values for &lt;STRONG&gt;VAR4&lt;/STRONG&gt; into a table like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;0&amp;lt;=var2&amp;lt;12&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;12&amp;lt;=var2&amp;lt;24&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;24&amp;lt;=var2&amp;lt;68&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;68&amp;lt;=var2&amp;lt;128&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;var2&amp;gt;=128&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;var3&amp;gt;=32&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&lt;STRONG&gt;5&lt;/STRONG&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;17&amp;lt;=var3&amp;lt;32&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;6&amp;lt;=var3&amp;lt;17&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;3&amp;lt;=var3&amp;lt;6&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;0&amp;lt;=var3&amp;lt;3&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(I think the "&lt;STRONG&gt;5&lt;/STRONG&gt;" in the upper right corner is consensus.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Assuming non-missing, non-negative values for var2 and var3, the above table covers all possible combinations. Feel free to change, e.g., "&amp;lt;=" to "&amp;lt;" and vice versa (in a consistent manner), if needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherwise, please explain further.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2022 20:10:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833726#M329598</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2022-09-15T20:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: relegating the levels of a variable when both conditions do not meet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833971#M329715</link>
      <description>&lt;P&gt;Hi Freelance,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry I have been very busy and have been unable to get back to you quickly. Also sorry some of my descriptions may have confused you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for all your responses. All your suggestions are very helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have talked to my project team. The requirement will make the upper bound of the var2 arbitrarily large. We need to change the grouping criteria.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Beatrice&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Sep 2022 12:06:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/relegating-the-levels-of-a-variable-when-both-conditions-do-not/m-p/833971#M329715</guid>
      <dc:creator>BeatriceWang</dc:creator>
      <dc:date>2022-09-17T12:06:00Z</dc:date>
    </item>
  </channel>
</rss>

