<?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: How to calculate every 5 minutes aggregate variable(like volume)? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404300#M279010</link>
    <description>&lt;P&gt;Are you using military time?&amp;nbsp; I.e., how do you distinguish between 9AM and 9PM?&amp;nbsp; What happens to your time values when you pass through noon?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;More generally, where did you get your time values?&amp;nbsp; I.e. did you produce the numerical time representation you provided us, or did the time values come in some other format that you converted to your demo values?&lt;/P&gt;</description>
    <pubDate>Sun, 15 Oct 2017 16:46:26 GMT</pubDate>
    <dc:creator>mkeintz</dc:creator>
    <dc:date>2017-10-15T16:46:26Z</dc:date>
    <item>
      <title>How to calculate every 5 minutes aggregate variable(like volume)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404295#M279009</link>
      <description>&lt;P&gt;I am studying a high frequency tick by tick data. I want to calculate every 5 minutes aggregate volume.&lt;/P&gt;&lt;P&gt;In the data, there is some variables:&lt;/P&gt;&lt;P&gt;1.Date&lt;/P&gt;&lt;P&gt;2.Account&lt;/P&gt;&lt;P&gt;3.Volume&lt;/P&gt;&lt;P&gt;4.Time&lt;/P&gt;&lt;P&gt;In my data, time like 84500.11 is 8:45 or 84716.78 is 8:47. Time is narrow to millisecond.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is an example:&lt;/P&gt;&lt;P&gt;Time&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Volume&lt;/P&gt;&lt;P&gt;84500.11&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;&lt;P&gt;84500.15&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3&lt;/P&gt;&lt;P&gt;84700.13&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&lt;/P&gt;&lt;P&gt;84802.36&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 6&lt;/P&gt;&lt;P&gt;84900.63&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&lt;/P&gt;&lt;P&gt;85000.63&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the 5 minutes aggregate volume is 2+3+5+6+5=21(85000.63 is out of 85000).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Trading time is from 8:45 to 13:45. Can you help me to write the code or loop to calculate every 5 minutes aggregate volume?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you for your time.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Highly appreciate it.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Oct 2017 15:06:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404295#M279009</guid>
      <dc:creator>dfgbnm</dc:creator>
      <dc:date>2017-10-15T15:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate every 5 minutes aggregate variable(like volume)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404300#M279010</link>
      <description>&lt;P&gt;Are you using military time?&amp;nbsp; I.e., how do you distinguish between 9AM and 9PM?&amp;nbsp; What happens to your time values when you pass through noon?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;More generally, where did you get your time values?&amp;nbsp; I.e. did you produce the numerical time representation you provided us, or did the time values come in some other format that you converted to your demo values?&lt;/P&gt;</description>
      <pubDate>Sun, 15 Oct 2017 16:46:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404300#M279010</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-10-15T16:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate every 5 minutes aggregate variable(like volume)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404303#M279011</link>
      <description>&lt;P&gt;How are you defining your 5 minutes? And I assume that you have a date and ticker symbol as well, and you want it for each?&lt;/P&gt;
&lt;P&gt;If so, post a better sample data set that reflects your problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The general solution is to use ROUND() to round the time to the nearest 5 minutes. SAS stores time as seconds, so that would be to the nearest 300. &amp;nbsp;Then you can use PROC MEANS to summarize the data.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Oct 2017 16:56:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404303#M279011</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-15T16:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate every 5 minutes aggregate variable(like volume)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404316#M279012</link>
      <description>&lt;P&gt;Thank you for replying. Very sorry for not expressing my question clearly.&lt;/P&gt;&lt;P&gt;The trading time in this data is from 8:45 to 13:45(5 hours).&lt;/P&gt;&lt;P&gt;The 5 minutes interval is defined as：(84500.000-85000.000), (85000.001-85500.000),&lt;/P&gt;&lt;P&gt;(85500.001-90000.000),......, (134000.001-134500.000)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is an example：&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;date&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;account&amp;nbsp; &amp;nbsp; &amp;nbsp; volume&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;time&lt;/SPAN&gt;&lt;BR /&gt;2010/1/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;123&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;84500.155&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2010/1/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;456&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;84600.116&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2010/1/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;789&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;50&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 84700.117&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2010/1/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;452&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;84800.115&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2010/1/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;124&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;84900.115&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2010/1/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;477&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;85000.145&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2010/1/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;412&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;85100.115&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2010/1/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;633&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;85200.123&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2010/1/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;521&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;85300.112&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2010/1/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;213&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;27&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 85400.145&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2010/1/4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;777&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;85500.144&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The first 5 minutes aggregate volume is from 84500.000 to 85000.000. So it is 1+1+50+5+2=59.&lt;/P&gt;&lt;P&gt;And next is from 85000.001 to 85500.000. So it is 4+1+6+2+27=40. There are 300/5=60 intervals.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can download the data I upload. The data format is csv.&lt;/P&gt;&lt;P&gt;Many thanks for your help.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Oct 2017 18:35:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404316#M279012</guid>
      <dc:creator>dfgbnm</dc:creator>
      <dc:date>2017-10-15T18:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate every 5 minutes aggregate variable(like volume)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404324#M279013</link>
      <description>&lt;P&gt;The trouble with your time format is that you can't directly measure the elapsed time between time points.&amp;nbsp; For instance from 8:55:00 to 9:00:00 should be five minutes (5:00).&amp;nbsp; With values stored as SAS time values (internally stored as seconds after midnight), you could just say&amp;nbsp; elapsed_seconds=time2-time1.&amp;nbsp; And you could find the nearest 5 minutes by &lt;EM&gt;&lt;STRONG&gt;round&lt;/STRONG&gt;&lt;/EM&gt;ing (or &lt;EM&gt;&lt;STRONG&gt;floor&lt;/STRONG&gt;&lt;/EM&gt;ing or &lt;EM&gt;&lt;STRONG&gt;ceil&lt;/STRONG&gt;&lt;/EM&gt;ing) to the 300 second boundary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But in your case subtracting 8:55:00 from 9:00:00, you would have 90000.000-85500.00 ==&amp;gt;&amp;nbsp; 04500 which your format would interpret as 45 minutes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now if you insist on this format then I would just round up&amp;nbsp; (use the CEIL function), as in&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end_time=&amp;nbsp;&amp;nbsp; 500*ceil(time/500);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then do a&amp;nbsp; &lt;EM&gt;&lt;STRONG&gt;PROC MEANS ...;&amp;nbsp; ... BY END_TIME; ...&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Oct 2017 23:02:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404324#M279013</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-10-15T23:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate every 5 minutes aggregate variable(like volume)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404362#M279014</link>
      <description>&lt;P&gt;Thank you for your help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would you like to give a suggestion how to change the time format about my data for SAS? And If your time is allowed, could you help to write the code because I have little about SAS?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your time. Very appreciate it.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 04:17:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404362#M279014</guid>
      <dc:creator>dfgbnm</dc:creator>
      <dc:date>2017-10-16T04:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate every 5 minutes aggregate variable(like volume)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404442#M279015</link>
      <description>&lt;P&gt;Do you mean 500 stands for 5 minutes?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input date : $20.         account      volume         time;
cards;
2010/1/4           123            1           84500.155
2010/1/4           456            1           84600.116      
2010/1/4           789           50          84700.117
2010/1/4           452            5           84800.115
2010/1/4           124            2           84900.115
2010/1/4           477            4           85000.145
2010/1/4           412            1           85100.115
2010/1/4           633            6           85200.123
2010/1/4           521            2           85300.112
2010/1/4           213           27          85400.145
2010/1/4           777            3           85500.144
;
run;
data temp;
 set have;
 if _n_=1 then set have(obs=1 keep=time rename=(time=_time));
 group=int((int(time)-int(_time))/500);
run;
proc means data=temp sum;
by group;
var volume;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Oct 2017 12:35:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404442#M279015</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-10-16T12:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate every 5 minutes aggregate variable(like volume)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404481#M279016</link>
      <description>&lt;P&gt;Getting a SAS time value from a number whose digits are&amp;nbsp; HHMMSS.mmm, where&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HH is a one or two digit representation of hour (00 to 23)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MM is two digit minutes (00-60)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SS is two digit seconds (00-60)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .mmm is a sub-second measure&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can break down this numeric value to provide three arguments to the HMS function to produce a sas time value from hours, minutes, and seconds.&amp;nbsp; See &lt;A href="http://documentation.sas.com/?docsetId=lefunctionsref&amp;amp;docsetTarget=n01f5qrjoh9h4hn1olbdpb5pr2td.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;SAS Functions and CALL Routines by Category&lt;/A&gt;&amp;nbsp;section in the &lt;A href="http://documentation.sas.com/?docsetId=lefunctionsref&amp;amp;docsetTarget=titlepage.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;SAS 9.4 Functions and Call Routines: Reference, Fifth Edition&lt;/A&gt;.&amp;nbsp; This will produce a numeric value equal to number of seconds after midnight.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So 09:01:02.345 will have the value 32462.345.&amp;nbsp; But you want to see 09:01:02.345, not 32400.&amp;nbsp; So assign a format (in your case the format time12.3) to the variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;hh=floor(time/10000);
mm=floor(time/100)-100*hh;
ss=mod(time,100);

newtime=hms(hh,mm,ss);
format newtime  time12.3;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Having done the above in a SAS data step, later in the same data step you can calculate the nearest 5 minutes by generating&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;  time_end=300*ceil(time/300);  &lt;BR /&gt;  format time_end time8.0;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look up the CEIL function in the reference above.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 15:05:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404481#M279016</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-10-16T15:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate every 5 minutes aggregate variable(like volume)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404520#M279017</link>
      <description>&lt;P&gt;It works!&lt;/P&gt;&lt;P&gt;Thank you for your coding. Many thanks for your help.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 16:45:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404520#M279017</guid>
      <dc:creator>dfgbnm</dc:creator>
      <dc:date>2017-10-16T16:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate every 5 minutes aggregate variable(like volume)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404521#M279018</link>
      <description>&lt;P&gt;Thank you for replying my question. Highly appreciate it.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 16:51:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calculate-every-5-minutes-aggregate-variable-like-volume/m-p/404521#M279018</guid>
      <dc:creator>dfgbnm</dc:creator>
      <dc:date>2017-10-16T16:51:19Z</dc:date>
    </item>
  </channel>
</rss>

