<?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: What is wrong with these IF and ELSE IF statements? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436547#M108571</link>
    <description>&lt;P&gt;To use an ELSE statement you need to have an IF/THEN statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first statement is just a subsetting IF statement.&amp;nbsp; It does not contain the THEN keyword.&lt;/P&gt;</description>
    <pubDate>Tue, 13 Feb 2018 03:19:29 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2018-02-13T03:19:29Z</dc:date>
    <item>
      <title>What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436540#M108566</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ques7;
set files.bicycles;
if model eq 'Road Bikes' and unitcost gt 2500;
else if model eq 'Hybrids' and unitcost gt 660;
run;
proc print data=ques7;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 569px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18478i4F6A8BDFC18CA2A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ks.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18479i0EA29347DF051601/image-size/large?v=v2&amp;amp;px=999" role="button" title="ks.png" alt="ks.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 03:14:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436540#M108566</guid>
      <dc:creator>b384b7</dc:creator>
      <dc:date>2018-02-13T03:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436542#M108568</link>
      <description>&lt;P&gt;see if this works&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; ques7&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;set&lt;/SPAN&gt; files&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;bicycles&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;if&lt;/SPAN&gt; (&lt;SPAN class="token procnames"&gt;model&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;eq&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;'Road Bikes'&lt;/SPAN&gt; and unitcost &lt;SPAN class="token operator"&gt;gt&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;2500) or (&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;model&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;eq&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;'Hybrids'&lt;/SPAN&gt; and unitcost &lt;SPAN class="token operator"&gt;gt&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;660)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;print&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;ques7&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 13 Feb 2018 03:12:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436542#M108568</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-02-13T03:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436546#M108570</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="h sd.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18480iECFE5D8231346D0C/image-size/large?v=v2&amp;amp;px=999" role="button" title="h sd.png" alt="h sd.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It shows this.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 03:17:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436546#M108570</guid>
      <dc:creator>b384b7</dc:creator>
      <dc:date>2018-02-13T03:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436547#M108571</link>
      <description>&lt;P&gt;To use an ELSE statement you need to have an IF/THEN statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first statement is just a subsetting IF statement.&amp;nbsp; It does not contain the THEN keyword.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 03:19:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436547#M108571</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-02-13T03:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436551#M108573</link>
      <description>&lt;P&gt;Then what would be the correct code for this? I have spent quite a lot of time over this.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 03:28:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436551#M108573</guid>
      <dc:creator>b384b7</dc:creator>
      <dc:date>2018-02-13T03:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436553#M108575</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;answer is correct.&amp;nbsp;If you tried it and its not giving you the expected results post your exact code and log.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 03:34:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436553#M108575</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-13T03:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436555#M108576</link>
      <description>&lt;P&gt;Sounds like you are having an issue with understanding how to express a complex condition and your confusion about SAS syntax is secondary to that.&lt;/P&gt;
&lt;P&gt;Think about what these words mean:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 569px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18481iC17A4C012B894CB4/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 03:41:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436555#M108576</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-02-13T03:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436559#M108578</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ques7;
set files.bicycles;
if (model eq 'Road Bikes' and unitcost gt 2500) or ( model eq 'Hybrids' and unitcost gt 660);
run;
proc print data=ques7;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I copied and pasted it exactly as told by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;. Here is how the log looks like.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vvkhfv.png" style="width: 629px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18482i04FB6100451D2633/image-dimensions/629x351?v=v2" width="629" height="351" role="button" title="vvkhfv.png" alt="vvkhfv.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 03:45:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436559#M108578</guid>
      <dc:creator>b384b7</dc:creator>
      <dc:date>2018-02-13T03:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436566#M108581</link>
      <description>&lt;P&gt;The question provides us with two conditions. Let the first one be X and the second one be Y.&lt;/P&gt;&lt;P&gt;We have to find&amp;nbsp; X OR Y.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess SAS goes through the dataset line by line and whichever condition (X/Y) holds true first, it gets printed in the output.&lt;/P&gt;&lt;P&gt;Am I right?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 04:10:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436566#M108581</guid>
      <dc:creator>b384b7</dc:creator>
      <dc:date>2018-02-13T04:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436567#M108582</link>
      <description>&lt;P&gt;No, I think you have some other issue going on. Most likely a case issue, for example Road bike is not the same as Road Bike.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you post a sample of what your data looks like?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How many records are you expecting as output?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could also create flags to see which conditions are met:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if model='Road Bike' and unitCost&amp;gt;2500 then flag=1;
else if model='Hybrid' and unitCost&amp;gt;6500 then flag=2;
else flag=0;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then run a PROC FREQ on the flag variable:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=ques7;
table flag;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/181031"&gt;@b384b7&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;The question provides us with two conditions. Let the first one be X and the second one be Y.&lt;/P&gt;
&lt;P&gt;We have to find&amp;nbsp; X OR Y.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess SAS goes through the dataset line by line and whichever condition (X/Y) holds true first, it gets printed in the output.&lt;/P&gt;
&lt;P&gt;Am I right?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 04:15:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436567#M108582</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-13T04:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436573#M108584</link>
      <description>&lt;P&gt;Thank You so much Reeza. I was wrongly putting 'Road Bikes' instead of 'Road Bike'. Also same with the Hybrid.&lt;/P&gt;&lt;P&gt;It was a case error. Now the code works.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ques7;
set files.bicycles;
if (model eq 'Road Bike' and unitcost gt 2500) or ( model eq 'Hybrid' and unitcost gt 660);
run;
proc print data=ques7;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qaq.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18483i8D2D6FB2956CFC08/image-size/large?v=v2&amp;amp;px=999" role="button" title="qaq.png" alt="qaq.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 04:24:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436573#M108584</guid>
      <dc:creator>b384b7</dc:creator>
      <dc:date>2018-02-13T04:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436585#M108591</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;your code looks good but you have to follow some programming rules.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here you are just extracting the data based on your requirements.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But when you&amp;nbsp;use else we have to write the then statement after the if.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if condition then output/flag;&lt;/P&gt;&lt;P&gt;else output/flag;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN&gt; ques7&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token keyword"&gt;set&lt;/SPAN&gt;&lt;SPAN&gt; files&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;bicycles&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token keyword"&gt;if&lt;/SPAN&gt;&amp;nbsp;(&lt;SPAN class="token procnames"&gt;model&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;eq&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;'Road Bikes'&lt;/SPAN&gt;&lt;SPAN&gt; and unitcost &lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;gt&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;2500) or (&lt;/SPAN&gt;&lt;SPAN class="token keyword"&gt;if&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;model&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;eq&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;'Hybrids'&lt;/SPAN&gt;&lt;SPAN&gt; and unitcost &lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;gt&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;660)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;print&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;ques7&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 06:48:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436585#M108591</guid>
      <dc:creator>srinath3111</dc:creator>
      <dc:date>2018-02-13T06:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436590#M108593</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ques7;
set files.bicycles;
if model eq 'Road Bikes' and unitcost gt 2500;
if model eq 'Hybrids' and unitcost gt 660;
run;

/*your if and else if do not have to be in ladder*/

proc print data=ques7;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Please let us know if it works&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 07:40:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436590#M108593</guid>
      <dc:creator>Satish_Parida</dc:creator>
      <dc:date>2018-02-13T07:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: What is wrong with these IF and ELSE IF statements?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436756#M108666</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138619"&gt;@Satish_Parida&lt;/a&gt;&amp;nbsp;that wouldn't work. The first subsetting IF would restrict the records and the second would never have a chance at being true.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 15:42:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-wrong-with-these-IF-and-ELSE-IF-statements/m-p/436756#M108666</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-13T15:42:38Z</dc:date>
    </item>
  </channel>
</rss>

