<?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 subsetting if statement in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/subsetting-if-statement/m-p/94230#M26678</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in one of the codes that I am working on has:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if startdate ne. ; &lt;STRONG&gt;* subsetting if: exclude obs meeting condition;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What does that bold statement do in this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 08 Dec 2012 04:33:03 GMT</pubDate>
    <dc:creator>rak123</dc:creator>
    <dc:date>2012-12-08T04:33:03Z</dc:date>
    <item>
      <title>subsetting if statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/subsetting-if-statement/m-p/94230#M26678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in one of the codes that I am working on has:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if startdate ne. ; &lt;STRONG&gt;* subsetting if: exclude obs meeting condition;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What does that bold statement do in this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Dec 2012 04:33:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/subsetting-if-statement/m-p/94230#M26678</guid>
      <dc:creator>rak123</dc:creator>
      <dc:date>2012-12-08T04:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: subsetting if statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/subsetting-if-statement/m-p/94231#M26679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As long as this is open code, it doesn't have any effect.&amp;nbsp; The subsetting ends with the first semicolon, the asterisk indicates that the rest of the line (up to the 2nd semicolon) is a comment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Dec 2012 04:45:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/subsetting-if-statement/m-p/94231#M26679</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-12-08T04:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: subsetting if statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/subsetting-if-statement/m-p/94232#M26680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnx for your reply. if the asterisk sign is not present then what does it really mean...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Dec 2012 04:51:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/subsetting-if-statement/m-p/94232#M26680</guid>
      <dc:creator>rak123</dc:creator>
      <dc:date>2012-12-08T04:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: subsetting if statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/subsetting-if-statement/m-p/94233#M26681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It mens select startdate not missing rows!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Dec 2012 07:14:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/subsetting-if-statement/m-p/94233#M26681</guid>
      <dc:creator>tacit</dc:creator>
      <dc:date>2012-12-08T07:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: subsetting if statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/subsetting-if-statement/m-p/94234#M26682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Comments in SAS can be of the form&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&amp;nbsp; /* comment enclosed in slash-asterisk and asterisk-slash respectively */&lt;/LI&gt;&lt;LI&gt;* comment as per "if the first nonblank character after a semicolon (or when it is the very first character in the entire source code) is an asterisk then everything up to the next semicolon will be treated as a comment" ;&lt;/LI&gt;&lt;LI&gt;%* comment in macro language syntax. Similar rule as before applies, ie. has to be terminated by a semicolon and has to come first after a statement boundary ;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now all this is extremely abbreviated and subject to omissions/errors that my fellow peers will eventually point out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What it boils down to in the context of your question:&lt;/P&gt;&lt;P&gt;The "bold statement" is nothing but a comment that tries to explain the non-bold statement (ie. the subsetting if) to its left.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this makes sense&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Dec 2012 08:04:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/subsetting-if-statement/m-p/94234#M26682</guid>
      <dc:creator>Robert_Bardos</dc:creator>
      <dc:date>2012-12-08T08:04:21Z</dc:date>
    </item>
  </channel>
</rss>

