<?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: difference between where end and also in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/difference-between-where-end-and-also/m-p/443696#M111025</link>
    <description>&lt;P&gt;The simplest answer here is that in 16+ of SAS programming I have never seen where also used, nor even come across it until you posted this question.&amp;nbsp; Logical operators and brackets are the ones used most.&lt;/P&gt;</description>
    <pubDate>Thu, 08 Mar 2018 09:40:04 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2018-03-08T09:40:04Z</dc:date>
    <item>
      <title>difference between where end and also</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-where-end-and-also/m-p/443679#M111020</link>
      <description>&lt;P&gt;can any one help me&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am little confused difference between 'where and ' &amp;amp; 'also'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 08:23:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-where-end-and-also/m-p/443679#M111020</guid>
      <dc:creator>SRINIVAS_N</dc:creator>
      <dc:date>2018-03-08T08:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: difference between where end and also</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-where-end-and-also/m-p/443684#M111022</link>
      <description>&lt;P&gt;Using WHERE ALSO allows you to apply multiple WHERE statements to a SAS procedure or DATA step simultaneously. The usual behaviour of using multiple WHERE statements is that the last one overwrites any previous ones. WHERE ALSO changes that behaviour to make ALL WHERE statements be used. For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data = sashelp.class
               out = class;
  by age;
  where sex = 'F';
  where also age &amp;gt; 14;&lt;BR /&gt;  * Same result as single statement: where sex = 'F' and age &amp;gt; 14;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The effect of the two WHERE statements is to select all females aged over 14.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 08:45:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-where-end-and-also/m-p/443684#M111022</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-03-08T08:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: difference between where end and also</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-where-end-and-also/m-p/443696#M111025</link>
      <description>&lt;P&gt;The simplest answer here is that in 16+ of SAS programming I have never seen where also used, nor even come across it until you posted this question.&amp;nbsp; Logical operators and brackets are the ones used most.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 09:40:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-where-end-and-also/m-p/443696#M111025</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-03-08T09:40:04Z</dc:date>
    </item>
  </channel>
</rss>

