<?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: Retain statement in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92713#M19538</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select distinct * from have ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Dec 2012 02:31:37 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2012-12-07T02:31:37Z</dc:date>
    <item>
      <title>Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92706#M19531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;For a particular patient there might be many procedures done.But I want to eliminate the duplicates of the same procedure if any.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;patient&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc_code&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CPT&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CPT&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CPT&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SPT&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OMT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;patient&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc_code&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CPT&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SPT&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OMT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2012 17:24:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92706#M19531</guid>
      <dc:creator>robertrao</dc:creator>
      <dc:date>2012-12-06T17:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92707#M19532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;one way:&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;input patient&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc_code $;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CPT&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CPT&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CPT&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SPT&lt;/P&gt;&lt;P&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OMT&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;proc sort data=have out=want nodupkey;&lt;/P&gt;&lt;P&gt;by patient&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc_code;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc print;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2012 18:17:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92707#M19532</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2012-12-06T18:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92708#M19533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks so much...is there any way i can use this with out the nodupkey??&lt;/P&gt;&lt;P&gt;maybe &lt;STRONG&gt;retain&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2012 19:44:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92708#M19533</guid>
      <dc:creator>robertrao</dc:creator>
      <dc:date>2012-12-06T19:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92709#M19534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think you can do it by retain.&lt;/P&gt;&lt;P&gt;another way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; by patient proc_code notsorted;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if last.proc_code;&lt;/P&gt;&lt;P&gt; proc print;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2012 19:49:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92709#M19534</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2012-12-06T19:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92710#M19535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;What is notsorted?is it an option?&lt;/P&gt;&lt;P&gt;Whats the use of it?could you please explain&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2012 21:35:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92710#M19535</guid>
      <dc:creator>robertrao</dc:creator>
      <dc:date>2012-12-06T21:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92711#M19536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Notsorted means just that: the data is not sorted. But you want first. and last. automatic variables to reflect every change in the sequence anyway, as if it was sorted. - PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2012 22:28:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92711#M19536</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-12-06T22:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92712#M19537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: navy; font-size: 10pt;"&gt;-----yet another way:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: navy; font-size: 10pt;"&gt;&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: navy; font-size: 10pt;"&gt;data&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; have;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;input&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; patient&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc_code $;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;cards&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CPT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CPT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CPT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SPT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OMT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: navy; font-size: 10pt;"&gt;run&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: navy; font-size: 10pt;"&gt;data&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;SPAN lang="EN" style="font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;_null_&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN lang="EN" style="font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;(&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: teal; font-size: 10pt;"&gt;1&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;=&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: teal; font-size: 10pt;"&gt;2&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;)&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;then&lt;/SPAN&gt; &lt;SPAN lang="EN" style="font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;set&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; have;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN lang="EN" style="font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;declare&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; hash prc(dataset:&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: purple; font-size: 10pt;"&gt;"have"&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;,ordered:&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: purple; font-size: 10pt;"&gt;"a"&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=prc.defineKey(&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: purple; font-size: 10pt;"&gt;"patient"&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: purple; font-size: 10pt;"&gt;"proc_code"&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=prc.defineDone();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=prc.output(dataset:&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: purple; font-size: 10pt;"&gt;"want"&lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: navy; font-size: 10pt;"&gt;run&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN" style="font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2012 23:48:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92712#M19537</guid>
      <dc:creator>joehinson</dc:creator>
      <dc:date>2012-12-06T23:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92713#M19538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select distinct * from have ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2012 02:31:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92713#M19538</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-12-07T02:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92714#M19539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joe, I have to ask, Is there a particular reason you choose to use&amp;nbsp; 'if (1=2)' instead of 'if 0', since (1=2) would always be 0?&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://communities.sas.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt; Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2012 02:54:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92714#M19539</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-12-07T02:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92715#M19540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This code still has duplicates of patient and proc_code.Do not know the reason.but they are intermingled with other data.&lt;/P&gt;&lt;P&gt;I think it is good for me to follow the nodupkey&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2012 06:18:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92715#M19540</guid>
      <dc:creator>robertrao</dc:creator>
      <dc:date>2012-12-07T06:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92716#M19541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aha, Hai.Kuo the observant one!&lt;/P&gt;&lt;P&gt;IF(0) versus IF(1=2):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I'm still brainstorming for suitable answers:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1) "Different strokes for different folks (like CARDS vs DATALINES)".&lt;/P&gt;&lt;P&gt;(2) "Less mystifying to FORTRAN programmers".&lt;/P&gt;&lt;P&gt;(3) "Better understood by SAS debutantes".&lt;/P&gt;&lt;P&gt;(4) "Personal signature. (if you see that on planet Mars, then you know I'm there)"&lt;/P&gt;&lt;P&gt;(5) "Just being a little mischievous, getting the processor to spend an extra nanosecond".&lt;/P&gt;&lt;P&gt;(6) "More palatable to the human Visual and Prefrontal cortices".&lt;/P&gt;&lt;P&gt;(7) "More mathematically appropriate".&lt;/P&gt;&lt;P&gt;(8) ?&lt;/P&gt;&lt;P&gt;(9) ?&lt;/P&gt;&lt;P&gt;- -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COULD THERE BE A CATCH?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;See the link below:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.math.toronto.edu/mathnet/falseProofs/first1eq2.html"&gt;http://www.math.toronto.edu/mathnet/falseProofs/first1eq2.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2012 14:48:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92716#M19541</guid>
      <dc:creator>joehinson</dc:creator>
      <dc:date>2012-12-07T14:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: Retain statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92717#M19542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like your answer, you made my day, Joe.:smileylaugh:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2012 15:17:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Retain-statement/m-p/92717#M19542</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-12-07T15:17:35Z</dc:date>
    </item>
  </channel>
</rss>

