<?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: Sum Variable over a 2 day window in a 2 month period in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339638#M77513</link>
    <description>&lt;P&gt;You already have better answers there, here is just to show you an unorthodox way of doing it, and there are times you could leverag this kind of programming:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input CustomerID  Date:ddmmyy10.              Amount;
cards;
1                  01/01/2017    300
1                  02/01/2017    300
1                  03/01/2017    400
1                  07/01/2017    200
;

proc sql;
select t1.customerid, sum(t1.amount,t2.amount) as amount
from have t1, have t2
where t1.customerid=t2.customerid
and t1.date-t2.date=1
and calculated amount &amp;gt;500
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 09 Mar 2017 14:23:04 GMT</pubDate>
    <dc:creator>Haikuo</dc:creator>
    <dc:date>2017-03-09T14:23:04Z</dc:date>
    <item>
      <title>Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339606#M77505</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm a little puzzled on how to do the following and am hoping the community could possible help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a data set that holds 2 months worth of data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have 3 variables&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CustomerID &amp;nbsp;Date &amp;nbsp;Amount&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What im trying to do is bring back all the observations where the amount in any 2 day window in the two months exceeds 500&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so a customer might have the following&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CustomerID &amp;nbsp;Date &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Amount&lt;/P&gt;
&lt;P&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/01/2017 &amp;nbsp; &amp;nbsp;300&lt;/P&gt;
&lt;P&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;02/01/2017 &amp;nbsp; &amp;nbsp;300&lt;/P&gt;
&lt;P&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;03/01/2017 &amp;nbsp; &amp;nbsp;400&lt;/P&gt;
&lt;P&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;07/01/2017 &amp;nbsp; &amp;nbsp;200&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to see the following output&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CustomerID Amount&lt;/P&gt;
&lt;P&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 600&lt;/P&gt;
&lt;P&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 700&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so it would total the amounts from the 1st and 2nd then the 2nd and 3rd but not the 7th as its not in the 2 day window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope &amp;nbsp;this makes sense.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stret&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2017 13:02:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339606#M77505</guid>
      <dc:creator>Stretlow</dc:creator>
      <dc:date>2017-03-09T13:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339611#M77507</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
	set have;

	keep CustomerId totalAmount;

	lAmount=lag(Amount);
	lDate=lag(Date);

	if _N_&amp;gt;1 then do;
		totalAmount=Amount+lAmount;
	end;

	if totalAmount&amp;gt;=500 and Date=intnx('day',lDate,1);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Mar 2017 13:11:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339611#M77507</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2017-03-09T13:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339618#M77508</link>
      <description>&lt;P&gt;I'd use a slight variation of &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/30622"&gt;@gamotte&lt;/a&gt;'s code to deal with multiple customers:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set have;
by CustomerId;
keep CustomerId totalAmount;
lAmount = lag(Amount);
lDate = lag(Date);
totalAmount = sum(Amount,lAmount);
if not first.CustomerId and totalAmount &amp;gt;= 500 and Date = intnx('day',lDate,1);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Dataset have needs to be sorted by CustomerId and Date.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2017 13:37:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339618#M77508</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-03-09T13:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339632#M77511</link>
      <description>&lt;P&gt;This is a good&amp;nbsp; problem to use both LAG and its related DIF function:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; by id;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; twoday_total=sum(amount,lag(amount));&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; if dif(date)=1 and first.id=0 and twoday_total&amp;gt;500;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2017 14:09:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339632#M77511</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-03-09T14:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339638#M77513</link>
      <description>&lt;P&gt;You already have better answers there, here is just to show you an unorthodox way of doing it, and there are times you could leverag this kind of programming:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input CustomerID  Date:ddmmyy10.              Amount;
cards;
1                  01/01/2017    300
1                  02/01/2017    300
1                  03/01/2017    400
1                  07/01/2017    200
;

proc sql;
select t1.customerid, sum(t1.amount,t2.amount) as amount
from have t1, have t2
where t1.customerid=t2.customerid
and t1.date-t2.date=1
and calculated amount &amp;gt;500
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Mar 2017 14:23:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339638#M77513</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2017-03-09T14:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339644#M77515</link>
      <description>Thanks for the responses, i'm testing them now... will report back</description>
      <pubDate>Thu, 09 Mar 2017 14:32:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339644#M77515</guid>
      <dc:creator>Stretlow</dc:creator>
      <dc:date>2017-03-09T14:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339656#M77518</link>
      <description>&lt;P&gt;Hi Again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Both the examples above (not the sql) seem to be working the same way however it is missing some.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So i have a customer with the following&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;27/01/2017 £73.18&lt;/P&gt;
&lt;P&gt;27/01/2017 £87.00&lt;/P&gt;
&lt;P&gt;28/01/2017 £900.00&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and the code is creating a total column with £987 which is fine as its over £500, but it isnt including the £73.18 in the total.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On the same customer i have the following&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;27/02/2017 £73.18&lt;/P&gt;
&lt;P&gt;27/02/2017 £87.00&lt;/P&gt;
&lt;P&gt;28/02/2017 £137.00&lt;/P&gt;
&lt;P&gt;28/02/2017 £29.00&lt;/P&gt;
&lt;P&gt;28/02/2017 £12.00&lt;/P&gt;
&lt;P&gt;28/02/2017 £900.00&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and it hasnt included that in the output?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure the reason for this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Help continue to be appreciated&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2017 15:08:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339656#M77518</guid>
      <dc:creator>Stretlow</dc:creator>
      <dc:date>2017-03-09T15:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339663#M77520</link>
      <description>&lt;P&gt;That's because we all were expecting only one record per customer and date.&lt;/P&gt;
&lt;P&gt;So you should add an intermediate step that sums up per customer and date. Otherwise the lagging becomes unwieldy.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2017 15:19:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339663#M77520</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-03-09T15:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339665#M77521</link>
      <description>&lt;P&gt;PS you just learned your first lesson in creating example data &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;"Cover all bases", ie have all possible test cases in it.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2017 15:21:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339665#M77521</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-03-09T15:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339671#M77522</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;PS you just learned your first lesson in creating example data &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;"Cover all bases", ie have all possible test cases in it.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Noted&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks very much for the help......&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2017 15:30:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339671#M77522</guid>
      <dc:creator>Stretlow</dc:creator>
      <dc:date>2017-03-09T15:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339941#M77618</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input CustomerID  Date:ddmmyy10.              Amount;
format date ddmmyy10.;
cards;
1                  01/01/2017    300
1                  02/01/2017    300
1                  03/01/2017    400
1                  07/01/2017    200
;

proc sql;
select *,(select sum(amount) from have where customerid=a.customerid and
date between a.date-1 and a.date) as sum_amount
from have as a
where calculated sum_amount &amp;gt;500
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 10 Mar 2017 09:36:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/339941#M77618</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-03-10T09:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Variable over a 2 day window in a 2 month period</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/340012#M77656</link>
      <description>&lt;P&gt;Modify to accomodate multiple records on the same date:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31461"&gt;@mkeintz&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;This is a good&amp;nbsp; problem to use both LAG and its related DIF function:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; by id;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; twoday_total=sum(amount,lag(amount));&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; if dif(date)=1 and first.id=0 and twoday_total&amp;gt;500;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't see a reason to make an intermediate dataset with daily totals to solve this problem.&amp;nbsp; It can be accomodated in the same data step:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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 id date;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; retain first_date .;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if first.id then first_date=date;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; dailysum+amount;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if first.date then dailysum=amount;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRIKE&gt;&amp;nbsp;&amp;nbsp;if last.date then do;&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRIKE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; twoday_total=sum(dailysum,lag(dailysum);&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRIKE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if dif(date)=1 and date^=first_date and twoday_total&amp;gt;500;&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRIKE&gt;&amp;nbsp; end;&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/* editted changes */&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if last.date;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; twoday_total=sum(dailysum,lag(dailysum);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if dif(date)=1 and date^=first_date and twoday_total&amp;gt;500;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2017 15:15:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sum-Variable-over-a-2-day-window-in-a-2-month-period/m-p/340012#M77656</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-03-10T15:15:55Z</dc:date>
    </item>
  </channel>
</rss>

