<?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: Data Step By Processing in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Data-Step-By-Processing/m-p/508506#M136573</link>
    <description>&lt;P&gt;log message plz&lt;/P&gt;</description>
    <pubDate>Mon, 29 Oct 2018 20:47:00 GMT</pubDate>
    <dc:creator>novinosrin</dc:creator>
    <dc:date>2018-10-29T20:47:00Z</dc:date>
    <item>
      <title>Data Step By Processing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-Step-By-Processing/m-p/508505#M136572</link>
      <description>&lt;P&gt;I don't understand why this isn't working. I want to sum up all the Qtrly_Paids for each Paid_Qtr. I know how to do this in proc sql but can't figure out why this isn't working in a data step.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA RDS_Final;
	RETAIN PAID_QTR QTR_Paids;
	SET work.RDS_Qtr_Pds(KEEP=Paid_Qtr Qtr_Paids);
	
	FORMAT 
		Pd_Clm_From_Rds COMMA20.;
	
	BY Paid_Qtr;
	IF first.Paid_Qtr THEN Pd_Clm_From_Rds = 0;
	Pd_Clm_From_Rds + Qtr_Paids;
	
	DROP Qtr_Paids;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 29 Oct 2018 20:43:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-Step-By-Processing/m-p/508505#M136572</guid>
      <dc:creator>pchappus</dc:creator>
      <dc:date>2018-10-29T20:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step By Processing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-Step-By-Processing/m-p/508506#M136573</link>
      <description>&lt;P&gt;log message plz&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 20:47:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-Step-By-Processing/m-p/508506#M136573</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-10-29T20:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step By Processing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-Step-By-Processing/m-p/508507#M136574</link>
      <description>&lt;P&gt;You got most of the way there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your result includes all the original observations, with the cumulative total so far.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To subset and get only the final totals, add this statement at the end of the DATA step:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if last.Paid_Qtr;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 20:47:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-Step-By-Processing/m-p/508507#M136574</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-10-29T20:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Data Step By Processing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-Step-By-Processing/m-p/508508#M136575</link>
      <description>&lt;P&gt;I really need to look into first. last. and by processing more...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems like a simple concept that I'm missing.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 20:51:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-Step-By-Processing/m-p/508508#M136575</guid>
      <dc:creator>pchappus</dc:creator>
      <dc:date>2018-10-29T20:51:09Z</dc:date>
    </item>
  </channel>
</rss>

