<?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: Need explaination for this chunk of code in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499613#M175</link>
    <description>&lt;P&gt;Thanks Reeza for your response,&lt;/P&gt;&lt;P&gt;I would probably go for transpose only but just wanted to understand few new statement's (for me) in this code.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Sep 2018 17:32:06 GMT</pubDate>
    <dc:creator>knagarkar</dc:creator>
    <dc:date>2018-09-27T17:32:06Z</dc:date>
    <item>
      <title>Need explaination for this chunk of code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499550#M163</link>
      <description>&lt;P&gt;&lt;SPAN&gt;data vite_b (keep=SID strata1 plaque1 plaque2 trt);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&lt;FONT color="#0000FF"&gt;set vite nobs=nobs;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;retain &lt;FONT color="#0000FF"&gt;SID 0 strata1 0 plaque1 0 plaque2 0 trt 0&lt;/FONT&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;if _N_ EQ 1&lt;/FONT&gt; then do;&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp;sid = ID;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp;strata1 = ID;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp;trt = treatment;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;end;&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp;if SID NE ID then do;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp;output;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp;SID = ID;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp;strata1 = strata;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; trt = treatment;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;end;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;if visit = 0 then plaque1= plaque;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;if visit = 2 then plaque2=plaque;&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp;if _N_ = nobs then output;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am new learner of SAS and I encountered issue understanding this chunk of code, if anyone of you could please explain each line of the code as in what's its doing then it will be of very help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also whats the use of certain statement in this code &lt;FONT color="#FF0000"&gt;(nobs, _N_)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT color="#FF0000"&gt;&lt;FONT color="#000000"&gt;Again Thanks for your time in advance.&lt;/FONT&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2018 15:20:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499550#M163</guid>
      <dc:creator>knagarkar</dc:creator>
      <dc:date>2018-09-27T15:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: Need explaination for this chunk of code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499553#M164</link>
      <description>Looks like it’s trying to transpose the data by ID. You could probably do this with a PROC TRANSPOSE. This code is somewhat inefficient, since BY group processing would simplify some of it.</description>
      <pubDate>Thu, 27 Sep 2018 15:27:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499553#M164</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-09-27T15:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Need explaination for this chunk of code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499569#M167</link>
      <description>&lt;P&gt;Hi Knagarkar,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me try with my limited knowledge... lets learn together &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;data vite_b &lt;STRONG&gt;&lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;data &lt;U&gt;out&lt;/U&gt;put &lt;U&gt;name&lt;/U&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt; (keep=SID strata1 plaque1 plaque2 trt);&amp;nbsp;&lt;STRONG&gt;&lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;only &lt;U&gt;keep&lt;/U&gt;ing the specified variables in the output table&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;&lt;FONT color="#000000"&gt;set vite&lt;/FONT&gt;&amp;nbsp;&lt;STRONG&gt;&lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;data &lt;U&gt;in&lt;/U&gt;tput&amp;nbsp;&lt;U&gt;table&lt;/U&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;nobs=&lt;FONT color="#000000"&gt;nobs&lt;/FONT&gt;;&amp;nbsp;&lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;STRONG&gt;&lt;EM&gt;Creates and names a temporary variable whose value is usually the total number of&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;STRONG&gt;&lt;EM&gt;observations in the input data set or data sets.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;retain&amp;nbsp;&lt;FONT color="#0000FF"&gt;SID 0 strata1 0 plaque1 0 plaque2 0 trt 0&lt;/FONT&gt;;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;Causes a variable that is created by an INPUT or assignment statement to retain its value from one iteration of the DATA step to the next.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;if _N_ EQ &lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/EM&gt;&lt;EM&gt;&lt;STRONG&gt;equal to)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt; 1&lt;/FONT&gt;&amp;nbsp;then do;&amp;nbsp;&lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;condition to be met for below 'instructions' i.e. 'then do'&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; sid = ID;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; strata1 = ID;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; trt = treatment;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;end; &lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;this ends the 'then do' statement&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp;if SID NE &lt;STRONG&gt;&lt;EM&gt;&lt;FONT face="book antiqua,palatino" color="#800080"&gt;(not equal to)&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt; ID then do; &lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;once again a condition for the then do instruction&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; output; &lt;EM&gt;&lt;STRONG&gt;&lt;FONT face="book antiqua,palatino" color="#800080"&gt;write to the table&amp;nbsp;&lt;U&gt;vite_b&lt;/U&gt;&amp;nbsp;as specified above&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; SID = ID;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; strata1 = strata;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; trt = treatment;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;end;&amp;nbsp;&lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;ends the 'then do' statement&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;if visit = 0 &lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;condition&lt;/STRONG&gt; &lt;/EM&gt;&lt;/FONT&gt;then plaque1= plaque &lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;instruction&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;if visit = 2 &lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;condition&lt;/STRONG&gt; &lt;/EM&gt;&lt;/FONT&gt;then plaque2=plaque &lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;instruction&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp;if _N_ = nobs &lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;condition&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;then output &lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;instruction&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;LOL!!&amp;nbsp; I hope this helps&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Marlene&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2018 16:03:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499569#M167</guid>
      <dc:creator>Mar1ene</dc:creator>
      <dc:date>2018-09-27T16:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Need explaination for this chunk of code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499613#M175</link>
      <description>&lt;P&gt;Thanks Reeza for your response,&lt;/P&gt;&lt;P&gt;I would probably go for transpose only but just wanted to understand few new statement's (for me) in this code.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2018 17:32:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499613#M175</guid>
      <dc:creator>knagarkar</dc:creator>
      <dc:date>2018-09-27T17:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Need explaination for this chunk of code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499615#M176</link>
      <description>&lt;P&gt;Hey Mar1ene,&lt;/P&gt;&lt;P&gt;That was quite elaborate &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Also I would want to understand few statements in the below code:&lt;/P&gt;&lt;P&gt;1)&amp;nbsp;&lt;FONT color="#0000FF"&gt;&amp;nbsp;if _N_ EQ&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="book antiqua,palatino" color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/EM&gt;&lt;EM&gt;&lt;STRONG&gt;equal to)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;1&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;then do;&amp;nbsp; (What is _N_, also does it mean that this part will run only once)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2) What if I don't assign '0' to all these variables:&amp;nbsp;retain&amp;nbsp;&lt;FONT color="#0000FF"&gt;SID 0 strata1 0 plaque1 0 plaque2 0 trt 0&lt;/FONT&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3)&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2018 17:36:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499615#M176</guid>
      <dc:creator>knagarkar</dc:creator>
      <dc:date>2018-09-27T17:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: Need explaination for this chunk of code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499825#M232</link>
      <description>&lt;P&gt;Hi Knagarkar,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Check the below out... I think it explains it nicely...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/What-is-the-purpose-of-N-syntax-in-the-codes/m-p/245335#M45764" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/What-is-the-purpose-of-N-syntax-in-the-codes/m-p/245335#M45764&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Marlene&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 10:17:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499825#M232</guid>
      <dc:creator>Mar1ene</dc:creator>
      <dc:date>2018-09-28T10:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need explaination for this chunk of code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499987#M259</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/236653"&gt;@knagarkar&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hey Mar1ene,&lt;/P&gt;
&lt;P&gt;That was quite elaborate &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;Also I would want to understand few statements in the below code:&lt;/P&gt;
&lt;P&gt;1)&amp;nbsp;&lt;FONT color="#0000ff"&gt;&amp;nbsp;if _N_ EQ&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#800080" face="book antiqua,palatino"&gt;&lt;EM&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/EM&gt;&lt;EM&gt;&lt;STRONG&gt;equal to)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;1&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;then do;&amp;nbsp; (What is _N_, also does it mean that this part will run only once)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;2) What if I don't assign '0' to all these variables:&amp;nbsp;retain&amp;nbsp;&lt;FONT color="#0000ff"&gt;SID 0 strata1 0 plaque1 0 plaque2 0 trt 0&lt;/FONT&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;3)&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;_N_ is an automatic variable SAS creates that indicates the iteration number of a data step. If you have a simple program as above you might think of it as the number of records read from in data set (s) on the set statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you don't assign a value to a retained variable it will be created as missing. If you have a list of variables on retain such as&lt;/P&gt;
&lt;P&gt;Retain A B C 0; then all of A B and C will initialize as 0.&lt;/P&gt;
&lt;P&gt;Take care with retained Character variables. You might set the length of the variable in the retain statement to be too short to hold desired values. Provide a length statement before the retain to ensure that your character variables are long enough to use.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 18:01:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/499987#M259</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-09-28T18:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Need explaination for this chunk of code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/500369#M315</link>
      <description>Thank you Knagarkar &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;</description>
      <pubDate>Mon, 01 Oct 2018 13:49:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/500369#M315</guid>
      <dc:creator>Mar1ene</dc:creator>
      <dc:date>2018-10-01T13:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need explaination for this chunk of code</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/500372#M317</link>
      <description>Oh gosh... meant thank you Ballardw (blushing face)</description>
      <pubDate>Mon, 01 Oct 2018 13:50:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Need-explaination-for-this-chunk-of-code/m-p/500372#M317</guid>
      <dc:creator>Mar1ene</dc:creator>
      <dc:date>2018-10-01T13:50:58Z</dc:date>
    </item>
  </channel>
</rss>

