<?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: Count Transactions in last 8 days in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/295530#M61775</link>
    <description>Worked like a charm. I can't thank you enough!!!</description>
    <pubDate>Wed, 31 Aug 2016 14:52:27 GMT</pubDate>
    <dc:creator>Fenton007</dc:creator>
    <dc:date>2016-08-31T14:52:27Z</dc:date>
    <item>
      <title>Count Transactions in last 8 days</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294548#M61452</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First timer here, please be gentle!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've included some code below as well as actual and expected results. &amp;nbsp;My code is clearly not working and it was dumb luck I thought it was. &amp;nbsp;I'm trying to count the number of transactions that occured in the last 8 days. &amp;nbsp;The best example is saying if on 6/11/16, I want to know how many transactions happened in the prior 8 days, so including 6/11, that would be transactions from 6/11 - 6/4, or 3 total transactions, where the code right now is showing 5.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd appreciate any possible solution you have to this problem, my back's against the wall trying to correct this.&amp;nbsp; Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jon&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&amp;nbsp;new;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;input&amp;nbsp;CustID TranAmt:dollar6.&amp;nbsp;TranDate:mmddyy10.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;datalines;&lt;/P&gt;&lt;P&gt;111 $100 6/1/2014&lt;/P&gt;&lt;P&gt;111 $200 6/2/2014&lt;/P&gt;&lt;P&gt;111 $500 6/4/2014&lt;/P&gt;&lt;P&gt;111 $500 6/10/2014&lt;/P&gt;&lt;P&gt;111 $100 6/11/2014&lt;/P&gt;&lt;P&gt;222 $200 6/3/2014&lt;/P&gt;&lt;P&gt;222 $500 6/4/2014&lt;/P&gt;&lt;P&gt;222 $600 6/4/2014&lt;/P&gt;&lt;P&gt;222 $600 6/11/2014&lt;/P&gt;&lt;P&gt;222 $600 6/19/2014&lt;/P&gt;&lt;P&gt;222 $600 6/28/2014&lt;/P&gt;&lt;P&gt;222 $600 6/29/2014;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&amp;nbsp;&lt;STRONG&gt;print&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&amp;nbsp;&lt;STRONG&gt;sort&lt;/STRONG&gt;&amp;nbsp;data=new;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;by&amp;nbsp;CustID TranDate;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&amp;nbsp;new2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;set&amp;nbsp;new;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;by&amp;nbsp;CustID;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Prev=lag1(TranDate);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;if&amp;nbsp;first.CustID=&lt;STRONG&gt;1&lt;/STRONG&gt;&amp;nbsp;then&amp;nbsp;TranCountLast8Days=&lt;STRONG&gt;1&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;else&amp;nbsp;if&amp;nbsp;TranDate&amp;lt;prev+&lt;STRONG&gt;8&lt;/STRONG&gt;&amp;nbsp;then&amp;nbsp;TranCountLast8Days+&lt;STRONG&gt;1&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;else&amp;nbsp;TranCountLast8Days=&lt;STRONG&gt;1&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;format&amp;nbsp;TranDate Prev&amp;nbsp;date9.;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;CustID&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;TranAmt&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;TranDate&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Prev&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;TranCountLast8Days&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;EXPECTED&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;111&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;100&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;111&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;200&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;111&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;500&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;111&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;500&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;10-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;111&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;100&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;11-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;10-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;5&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;222&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;200&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;3-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;11-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;222&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;500&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;3-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;222&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;600&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;222&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;600&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;11-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;222&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;600&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;19-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;11-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;222&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;600&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;28-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;19-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;222&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;600&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;29-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;28-Jun-14&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Aug 2016 00:49:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294548#M61452</guid>
      <dc:creator>Fenton007</dc:creator>
      <dc:date>2016-08-27T00:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Count Transactions in last 8 days</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294552#M61456</link>
      <description>&lt;PRE&gt;
Assuming your table is not big .


data new;
  input CustID TranAmt:dollar6. TranDate:mmddyy10.;
  format TranDate mmddyy10.;
  datalines;
111 $100 6/1/2014
111 $200 6/2/2014
111 $500 6/4/2014
111 $500 6/10/2014
111 $100 6/11/2014
222 $200 6/3/2014
222 $500 6/4/2014
222 $600 6/4/2014
222 $600 6/11/2014
222 $600 6/19/2014
222 $600 6/28/2014
222 $600 6/29/2014
;
run;
proc sql;
create table want as
 select *,
 (select count(*) from new 
  where CustId=a.CustId 
   and TranDate between a.TranDate-7 and a.TranDate) as count
from new as a;
quit;


&lt;/PRE&gt;</description>
      <pubDate>Sat, 27 Aug 2016 01:38:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294552#M61456</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-08-27T01:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Count Transactions in last 8 days</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294566#M61464</link>
      <description>&lt;P&gt;It is not clear what the date limit is. Here are two alternatives:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
  input CustID TranAmt:dollar6. TranDate:mmddyy10.;
  datalines;
111 $100 6/1/2014
111 $200 6/2/2014
111 $500 6/4/2014
111 $500 6/10/2014
111 $100 6/11/2014
222 $200 6/3/2014
222 $500 6/4/2014
222 $600 6/4/2014
222 $600 6/11/2014
222 $600 6/19/2014
222 $600 6/28/2014
222 $600 6/29/2014
;

/* Trans counts relative to a fixed date */

%let fixedDate='11JUN2014'd;
/* Could be %let fixedDate=Today(); */

proc sql;
select custId, count(*) as nbTransIn8Days
from new
where trandate &amp;gt; intnx("DAY", &amp;amp;fixedDate., -8)
group by custId;
quit;

/* Trans counts relative to the date of the last transaction for
each custId */

proc sql;
select custId, count(*) as nbTransIn8Days
from 
    (   select * 
        from new
        group by custId
        having tranDate &amp;gt; intnx("DAY", max(TranDate), -8)
    )
group by custId;
quit; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 27 Aug 2016 02:43:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294566#M61464</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2016-08-27T02:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Count Transactions in last 8 days</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294582#M61466</link>
      <description>Thanks. I'm away from my machine it wanted to add clarification on volume. There could be 3 million rows I would need to run this on.&lt;BR /&gt;</description>
      <pubDate>Sat, 27 Aug 2016 12:18:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294582#M61466</guid>
      <dc:creator>Fenton007</dc:creator>
      <dc:date>2016-08-27T12:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Count Transactions in last 8 days</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294589#M61467</link>
      <description>&lt;P&gt;This worked great on the sample dataset, but I my real set as 6 million rows, and it's been running for 2 hours, which is just too long. &amp;nbsp;In addition to this, I'll need to calcualate the sum of the TranAmt&amp;nbsp;field, and I can already see the requests coming to do this for number of trans (and sum of trans) in 4 days, 8 days, 30, days, 60 days. &amp;nbsp;Would these need separate queries? &amp;nbsp;Granted a new methodology might be needed for this large of a dataset. &amp;nbsp;Thanks again for your prompt response, for a guy learning SAS, and I look forward to any additional insights/solutions you might have.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Aug 2016 16:52:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294589#M61467</guid>
      <dc:creator>Fenton007</dc:creator>
      <dc:date>2016-08-27T16:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: Count Transactions in last 8 days</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294606#M61470</link>
      <description>&lt;PRE&gt;
The simplest way is using Hash Table.
And assuming you have big memory to hold all these six million obs.
If that is not worked, tell me , I can use other skill.



data new;
  input CustID TranAmt:dollar6. TranDate:mmddyy10.;
  format TranDate mmddyy10.;
  datalines;
111 $100 6/1/2014
111 $200 6/2/2014
111 $500 6/4/2014
111 $500 6/10/2014
111 $100 6/11/2014
222 $200 6/3/2014
222 $500 6/4/2014
222 $600 6/4/2014
222 $600 6/11/2014
222 $600 6/19/2014
222 $600 6/28/2014
222 $600 6/29/2014
;
run;

data want;
 if _n_=1 then do;
  if 0 then set new(rename=(TranAmt=_TranAmt));
  declare hash h(dataset:'new(rename=(TranAmt=_TranAmt))',hashexp:20,multidata:'y');
  h.definekey('CustID','TranDate');
  h.definedata('_TranAmt');
  h.definedone();
 end;
set new;
count_8day=0;
sum_8day=0;
do i=TranDate-7 to TranDate;
 rc=h.find(key:CustId,key:i);
 do while(rc=0);
  count_8day+1;
  sum_8day+_TranAmt;
  rc=h.find_next(key:CustId,key:i);
 end;
end;
drop i rc _TranAmt;
run;



&lt;/PRE&gt;</description>
      <pubDate>Sun, 28 Aug 2016 02:11:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/294606#M61470</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-08-28T02:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: Count Transactions in last 8 days</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/295530#M61775</link>
      <description>Worked like a charm. I can't thank you enough!!!</description>
      <pubDate>Wed, 31 Aug 2016 14:52:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/295530#M61775</guid>
      <dc:creator>Fenton007</dc:creator>
      <dc:date>2016-08-31T14:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Count Transactions in last 8 days</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/398102#M96250</link>
      <description>&lt;P&gt;So I'm back with another question.&amp;nbsp; The HASH table example worked great, but I'm now working on a MUCH larger SAS Dataset about 60MM obs.&amp;nbsp; The hash object keeps running out of memory and giving this message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Hash object added 26214384 items when memory failure occurred. FATAL: Insufficient memory to execute DATA step program. Aborted during the EXECUTION phase. ERROR: The SAS System stopped processing this step because of insufficient memory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS is running on a Unix/SAS Grid environment.&amp;nbsp; I've looked into setting a "memsize" setting, but not sure if (or how) to do it in this setting, or if it will work.&amp;nbsp; If there's another methodology that will work I'm all ears.&amp;nbsp; Thanks in advance for the assistance.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2017 14:08:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-Transactions-in-last-8-days/m-p/398102#M96250</guid>
      <dc:creator>Fenton007</dc:creator>
      <dc:date>2017-09-22T14:08:51Z</dc:date>
    </item>
  </channel>
</rss>

