<?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 Select statement equivalent in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46122#M9529</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if it answers your question on efficiency (AFAIK there is very little difference between the two) but the SAS documentation on the IF-THEN/ELSE statement (see &lt;A href="http://support.sas.com/documentation/cdl/en/lestmtsref/63323/HTML/default/viewer.htm#n1j60arf27ll4nn1ejavv3nby4pa.htm"&gt;here&lt;/A&gt;) states:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H2 class="title" style="font-size: 16px; margin-top: 0.5em;"&gt;Details&lt;/H2&gt;&lt;P class="topicContent"&gt;&lt;A name="n11futluxlblc9n1ovr2pcq0n8ki" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;DIV class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="n1eco1molct3e0n1ubv6902nfwzw" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;SAS evaluates the expression in an IF-THEN statement to produce a result that is either nonzero, zero, or missing. A nonzero and nonmissing result causes the expression to be true; a result of zero or missing causes the expression to be false.&lt;P&gt;&lt;/P&gt;&lt;P class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="p0a69y1ypvd78vn1u8s9s1z0wc5x" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;If the conditions that are specified in the IF clause are met, the IF-THEN statement executes a SAS statement for observations that are read from a SAS data set, for records in an external file, or for computed values. An optional ELSE statement gives an alternative action if the THEN clause is not executed. The ELSE statement, if used, must immediately follow the IF-THEN statement.&lt;/P&gt;&lt;P class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="p0d3x3b6gs8utzn1tbqiwci0ra97" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;Using IF-THEN statements &lt;SPAN class="userSuppliedValue" style="font-style: italic;"&gt;without&lt;/SPAN&gt; the ELSE statement causes SAS to evaluate all IF-THEN statements. Using IF-THEN statements &lt;SPAN class="userSuppliedValue" style="font-style: italic;"&gt;with&lt;/SPAN&gt; the ELSE statement causes SAS to execute IF-THEN statements until it encounters the first true statement. Subsequent IF-THEN statements are not evaluated.&lt;/P&gt;&lt;P class="note" style="margin-top: 1.4em;"&gt;&lt;A name="n1iycdom42u7fxn1dsuj3gb8cjbc" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;SPAN class="noteGenText" style="font-weight: bold; padding-right: 0.5em;"&gt;Note: &lt;/SPAN&gt;For greater efficiency, construct your IF-THEN/ELSE statement with conditions of decreasing probability.&lt;/P&gt;&lt;/DIV&gt;&lt;P class="comparisons" style="font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; border-top-width: 2px; border-top-style: solid; border-top-color: #dcdcdc; margin-top: 2.5em; color: #000000; background-color: #ffffff;"&gt;&lt;A name="p0q8c1xpuf9jzkn1rkaf0p7tqaa4" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;H2 class="title" style="font-size: 16px; margin-top: 0.5em;"&gt;Comparisons&lt;/H2&gt;&lt;DIV class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="n0kyyixaz5ef13n144ulaiy3o0dp" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;DIV class="listUnordered"&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class="item" style="margin-top: 1.4em;"&gt;&lt;A name="p02a67kj076miln18x9rga69kfdf" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;DIV class="paraSimpleFirst" style="display: inline;"&gt;&lt;A name="p0485ydoxngplon13ou1eixewaeb" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;Use a SELECT group rather than a series of IF-THEN statements when you have a long series of mutually exclusive conditions.&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="item" style="margin-top: 1.4em;"&gt;&lt;A name="n0nfmqr5cfyhc0n115wfzh6hq6uq" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;P class="paraSimpleFirst" style="display: inline;"&gt;&lt;A name="p0s3c74x2qamv6n1lmdxao4sm9to" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;Use subsetting IF statements, without a THEN clause, to continue processing only those observations or records that meet the condition that is specified in the IF clause.&lt;/P&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Nov 2011 22:45:58 GMT</pubDate>
    <dc:creator>Resa</dc:creator>
    <dc:date>2011-11-17T22:45:58Z</dc:date>
    <item>
      <title>Select statement equivalent</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46120#M9527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp; What is the equivalent select statement for the following if-then/else statements?And which one of the two is more efficient?&lt;/P&gt;&lt;P&gt;well, the conditional logic is not applied yet.hence there is no condition applied after the if statement.&lt;/P&gt;&lt;P&gt;DATA IPMD IPMDIS IPSD IPSDIS NONAD NONADIS;&lt;/P&gt;&lt;P&gt;SET DISK2 DISK3;&lt;/P&gt;&lt;P&gt;IF THEN OUTPUT IPMD;&lt;/P&gt;&lt;P&gt;ELSE IF THEN OUTPUT IPMDIS;&lt;/P&gt;&lt;P&gt;ELSE IF THEN OUTPUT IPSD;&lt;/P&gt;&lt;P&gt;ELSE IF THEN OUTPUT IPSDIS;&lt;/P&gt;&lt;P&gt;ELSE IF THEN OUTPUT NONAD;&lt;/P&gt;&lt;P&gt;ELSE THEN OUTPUT NONADIS;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2011 14:43:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46120#M9527</guid>
      <dc:creator>SASPhile</dc:creator>
      <dc:date>2011-11-11T14:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: Select statement equivalent</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46121#M9528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use select statement, but I don't know which one is better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; male female other;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; sasuser.admit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;select&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; (sex);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;when&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: purple; font-size: 10pt;"&gt;'M'&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;) output male;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;when&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: purple; font-size: 10pt;"&gt;'F'&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;) output female;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;otherwise&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; output other;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;end&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2011 15:04:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46121#M9528</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2011-11-11T15:04:54Z</dc:date>
    </item>
    <item>
      <title>Select statement equivalent</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46122#M9529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if it answers your question on efficiency (AFAIK there is very little difference between the two) but the SAS documentation on the IF-THEN/ELSE statement (see &lt;A href="http://support.sas.com/documentation/cdl/en/lestmtsref/63323/HTML/default/viewer.htm#n1j60arf27ll4nn1ejavv3nby4pa.htm"&gt;here&lt;/A&gt;) states:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H2 class="title" style="font-size: 16px; margin-top: 0.5em;"&gt;Details&lt;/H2&gt;&lt;P class="topicContent"&gt;&lt;A name="n11futluxlblc9n1ovr2pcq0n8ki" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;DIV class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="n1eco1molct3e0n1ubv6902nfwzw" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;SAS evaluates the expression in an IF-THEN statement to produce a result that is either nonzero, zero, or missing. A nonzero and nonmissing result causes the expression to be true; a result of zero or missing causes the expression to be false.&lt;P&gt;&lt;/P&gt;&lt;P class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="p0a69y1ypvd78vn1u8s9s1z0wc5x" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;If the conditions that are specified in the IF clause are met, the IF-THEN statement executes a SAS statement for observations that are read from a SAS data set, for records in an external file, or for computed values. An optional ELSE statement gives an alternative action if the THEN clause is not executed. The ELSE statement, if used, must immediately follow the IF-THEN statement.&lt;/P&gt;&lt;P class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="p0d3x3b6gs8utzn1tbqiwci0ra97" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;Using IF-THEN statements &lt;SPAN class="userSuppliedValue" style="font-style: italic;"&gt;without&lt;/SPAN&gt; the ELSE statement causes SAS to evaluate all IF-THEN statements. Using IF-THEN statements &lt;SPAN class="userSuppliedValue" style="font-style: italic;"&gt;with&lt;/SPAN&gt; the ELSE statement causes SAS to execute IF-THEN statements until it encounters the first true statement. Subsequent IF-THEN statements are not evaluated.&lt;/P&gt;&lt;P class="note" style="margin-top: 1.4em;"&gt;&lt;A name="n1iycdom42u7fxn1dsuj3gb8cjbc" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;SPAN class="noteGenText" style="font-weight: bold; padding-right: 0.5em;"&gt;Note: &lt;/SPAN&gt;For greater efficiency, construct your IF-THEN/ELSE statement with conditions of decreasing probability.&lt;/P&gt;&lt;/DIV&gt;&lt;P class="comparisons" style="font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; border-top-width: 2px; border-top-style: solid; border-top-color: #dcdcdc; margin-top: 2.5em; color: #000000; background-color: #ffffff;"&gt;&lt;A name="p0q8c1xpuf9jzkn1rkaf0p7tqaa4" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;H2 class="title" style="font-size: 16px; margin-top: 0.5em;"&gt;Comparisons&lt;/H2&gt;&lt;DIV class="paragraph" style="margin-top: 1.4em;"&gt;&lt;A name="n0kyyixaz5ef13n144ulaiy3o0dp" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;DIV class="listUnordered"&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class="item" style="margin-top: 1.4em;"&gt;&lt;A name="p02a67kj076miln18x9rga69kfdf" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;DIV class="paraSimpleFirst" style="display: inline;"&gt;&lt;A name="p0485ydoxngplon13ou1eixewaeb" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;Use a SELECT group rather than a series of IF-THEN statements when you have a long series of mutually exclusive conditions.&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="item" style="margin-top: 1.4em;"&gt;&lt;A name="n0nfmqr5cfyhc0n115wfzh6hq6uq" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;&lt;P class="paraSimpleFirst" style="display: inline;"&gt;&lt;A name="p0s3c74x2qamv6n1lmdxao4sm9to" style="line-height: 1.25em; font-family: inherit;"&gt;&lt;/A&gt;Use subsetting IF statements, without a THEN clause, to continue processing only those observations or records that meet the condition that is specified in the IF clause.&lt;/P&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Nov 2011 22:45:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46122#M9529</guid>
      <dc:creator>Resa</dc:creator>
      <dc:date>2011-11-17T22:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Select statement equivalent</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46123#M9530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... there is one big difference betwee if-then-else and select that I don't think has been mentioned ... given ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;data x;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;input a @@;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;datalines;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;1 2 1 2 1 3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data set Y is created and when A is not 1 or 2, B is missing&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;data y;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;set x;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;if a eq 1 then b='one';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;else&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;if a eq 2 then b='two';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data set Z is NOT created and there is an error in the LOG ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;data z;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;set x;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;select(a);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp; when (1) b='one';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp; when (2) b='two';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;end;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2011 03:31:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46123#M9530</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2011-11-21T03:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: Select statement equivalent</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46124#M9531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mike . You lost a very important statement in SELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;data x;
input a @@;
datalines;
1 2 1 2 1 3
;
run;
data z;
set x;
select(a);
&amp;nbsp;&amp;nbsp; when (1) b='one';
&amp;nbsp;&amp;nbsp; when (2) b='two';
&amp;nbsp;&amp;nbsp; otherwise;
end;
run;


&lt;/PRE&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;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2011 03:58:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46124#M9531</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-11-21T03:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Select statement equivalent</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46125#M9532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ... that was the point of the posting, to show how SELECT can make a data step fail if one does not take into account all possibilities.&amp;nbsp; SELECT forces you to pay attention to details while IF allows you to be sloppy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2011 16:46:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Select-statement-equivalent/m-p/46125#M9532</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2011-11-23T16:46:55Z</dc:date>
    </item>
  </channel>
</rss>

