<?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: from monthly dataset to quarterly in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56154#M15679</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This method will also work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data pooledddd_2000;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input date;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;200001&lt;/P&gt;&lt;P&gt;201005&lt;/P&gt;&lt;P&gt;201112&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data pooledddd_date;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set pooledddd_2000;&lt;/P&gt;&lt;P&gt;&amp;nbsp; dat1 = input(put(date,6.), yymmN6.) ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Feb 2012 21:50:29 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2012-02-16T21:50:29Z</dc:date>
    <item>
      <title>from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56146#M15671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have data with monthly observations ( between 2000-01 and 2010-12) and would like to merge the monthly data to quarterly. I've got 10 variables which values should be changed adding first three months to quarter1 (e.g. 2000:1) second three to quarter2(2000:2)&amp;nbsp; and so on. Which procedure could I use here? So I would only need to sum up three rows at a time, but so that it wold got through the whole dataset. Also, it would be nice if the code could separate when a country changes, since I have panel data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 14:51:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56146#M15671</guid>
      <dc:creator>carbs</dc:creator>
      <dc:date>2012-02-16T14:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56147#M15672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a timestamp variable for each month? what does it look like ? such as '2000-01'? You could have numerous approaches. &lt;/P&gt;&lt;P&gt;1. For one, you could just do a double loop using data step, one for quarter and sum it up through all of your records. given you have multiple variables of interest, you may need an additional array loop to save your coding labor.&lt;/P&gt;&lt;P&gt;2. For two, depending on your timestamp variable, you could introduce quarter indicator using some format (such as QTRw.), and concatenate with year to make groups. After that, you can choose many procs, such as, proc summary, proc report, proc sql to accomplish your job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just Edited. More detail would be appreciated, preferably sample data, both have and want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 15:02:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56147#M15672</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-02-16T15:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56148#M15673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I have, it's in form 200001, 200002 etc. Could you give me an example of either of the approaches? Thanks for your quick reply!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 15:11:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56148#M15673</guid>
      <dc:creator>carbs</dc:creator>
      <dc:date>2012-02-16T15:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56149#M15674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since I don't have your sample data, I will make one based on my understanding of your description, hopefully it is not completely off.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;infile cards;&lt;/P&gt;&lt;P&gt;input my yymmn6. v1 v2 ;&lt;/P&gt;&lt;P&gt;format my yymmd.;&lt;/P&gt;&lt;P&gt;yq=cats(year(my),qtr(my));&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;200001&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4&lt;/P&gt;&lt;P&gt;200002&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;7&lt;/P&gt;&lt;P&gt;200003&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;9&lt;/P&gt;&lt;P&gt;200004&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;12&lt;/P&gt;&lt;P&gt;200005&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;7&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;14&lt;/P&gt;&lt;P&gt;200006&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;17&lt;/P&gt;&lt;P&gt;200007&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;10&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;19&lt;/P&gt;&lt;P&gt;200008&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;22&lt;/P&gt;&lt;P&gt;200009&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;13&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;24&lt;/P&gt;&lt;P&gt;200010&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;14&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;27&lt;/P&gt;&lt;P&gt;200011&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;16&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;29&lt;/P&gt;&lt;P&gt;200012&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;17&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;32&lt;/P&gt;&lt;P&gt;200101&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;19&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;34&lt;/P&gt;&lt;P&gt;200102&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;20&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;37&lt;/P&gt;&lt;P&gt;200103&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;22&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;39&lt;/P&gt;&lt;P&gt;200104&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;23&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;42&lt;/P&gt;&lt;P&gt;200105&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;25&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;44&lt;/P&gt;&lt;P&gt;200106&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;26&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;47&lt;/P&gt;&lt;P&gt;200107&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;28&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;49&lt;/P&gt;&lt;P&gt;200108&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;29&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;52&lt;/P&gt;&lt;P&gt;200109&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;31&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;54&lt;/P&gt;&lt;P&gt;200110&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;32&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;57&lt;/P&gt;&lt;P&gt;200111&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;34&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;59&lt;/P&gt;&lt;P&gt;200112&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;35&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;62&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;/*option 1*/&lt;/P&gt;&lt;P&gt;data want (drop=v1 v2 i);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do _n_=1 to 3 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; array v(*) v1-v2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; array q(*) q_sum1-q_sum2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do i=1 to dim(v);&lt;/P&gt;&lt;P&gt; q(i)+v(i);&lt;/P&gt;&lt;P&gt; end;&lt;/P&gt;&lt;P&gt; end;&lt;/P&gt;&lt;P&gt; output;&lt;/P&gt;&lt;P&gt;call missing (of q_sum1 q_sum2);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*option 2*/&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table want as&lt;/P&gt;&lt;P&gt;select yq, sum(v1) as q_sum1, sum(v2) as q_sum2&lt;/P&gt;&lt;P&gt;from have&lt;/P&gt;&lt;P&gt;group by yq;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you can get a bit of taste of it and apply the logic to your real life data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 15:36:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56149#M15674</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-02-16T15:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56150#M15675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your "Month" variables were kept as SAS date variable the grouping could be done with formats;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc summary data=&amp;lt;your data set&amp;gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class &amp;lt;your year/month variable&amp;gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var v1 v2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format &amp;lt;your year/month variable&amp;gt; YYQ6.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output out= newdata (drop= _type_ _freq_) sum= ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 16:20:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56150#M15675</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-02-16T16:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56151#M15676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks for both of your help! First I decided to try the latter aproach by ballardw, however I got some weird results, so I started to think that maybe the date variable I have is not a SAS date variable. I used vtype to find out that i have dates in numeric form. Then I Tried to transfer my Date variable to a sas date variable using the following code, but for some reason wasn't able to.. if I solve this, maybe the code is usable after that..&amp;nbsp; I used the code below:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;525&amp;nbsp; data pooledddd_date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;526&amp;nbsp; set pooledddd_2000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;527&amp;nbsp; tempchar = put (Date, 6.) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;528&amp;nbsp; dat1 = input(tempchar, yymm6.) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 48&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;ERROR 48-59: The informat YYMM was not found or could not be loaded.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;529&amp;nbsp; run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;This is the log info on my codings..For some reson it doesn't accept the form yymm6. even though the dates are in form 200001 etc..Any ideas?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 20:54:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56151#M15676</guid>
      <dc:creator>carbs</dc:creator>
      <dc:date>2012-02-16T20:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56152#M15677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I usually add in the 'day'&amp;nbsp; as 1 to make life easier.&lt;/P&gt;&lt;P&gt;There are probably other ways of doing this as well. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dat1 = put(tempchar||"01", yymmdd8.) ;&lt;/P&gt;&lt;P&gt;format dat1 date9.;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 21:07:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56152#M15677</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2012-02-16T21:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56153#M15678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;561&amp;nbsp; data pooledddd_date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;562&amp;nbsp; set pooledddd_2000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;563&amp;nbsp; tempchar = put (Date, 6.) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;564&amp;nbsp; dat1 = put(tempchar||"01", yymmdd8.) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 48&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;ERROR 48-59: The format $YYMMDD was not found or could not be loaded.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;565&amp;nbsp; format dat1 date9.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 48&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;ERROR 48-59: The format $DATE was not found or could not be loaded.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;566&amp;nbsp; run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'SAS Monospace'; font-size: 8pt;"&gt;??&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 21:47:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56153#M15678</guid>
      <dc:creator>carbs</dc:creator>
      <dc:date>2012-02-16T21:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56154#M15679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This method will also work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data pooledddd_2000;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input date;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;200001&lt;/P&gt;&lt;P&gt;201005&lt;/P&gt;&lt;P&gt;201112&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data pooledddd_date;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set pooledddd_2000;&lt;/P&gt;&lt;P&gt;&amp;nbsp; dat1 = input(put(date,6.), yymmN6.) ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 21:50:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56154#M15679</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-16T21:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56155#M15680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Used your code, and got the dates to following form:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="padding-bottom: 0px; padding-left: 5.4pt; padding-right: 5.4pt; margin-left: 4.9pt; padding-top: 0px;" width="152"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD style="padding-left: 5.4pt; padding-right: 5.4pt; border: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200001&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: black 1pt solid; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14610&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200002&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14641&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200003&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14670&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200004&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14701&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200005&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14731&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200006&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14762&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200007&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14792&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200008&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14823&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200009&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14854&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14884&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14915&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200012&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14945&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: black 1pt solid; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="109"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;200101&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border-bottom: black 1pt solid; border-left: medium none; padding-left: 5.4pt; padding-right: 5.4pt; border-top: medium none; border-right: black 1pt solid;" valign="top" width="43"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;14976&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;etc....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it looks like its going to the right direction, however i don't understand why didn't it convert the values to dates straight?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 22:35:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56155#M15680</guid>
      <dc:creator>carbs</dc:creator>
      <dc:date>2012-02-16T22:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56156#M15681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It did convert the numbers to dates.&amp;nbsp; You are just missing a format.&amp;nbsp; e.g., try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data pooledddd_date;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set pooledddd_2000;&lt;/P&gt;&lt;P&gt;&amp;nbsp; format dat1 yymm8.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; dat1 = input(put(date,6.), yymmN6.) ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 22:46:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56156#M15681</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-16T22:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56157#M15682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Worked like a charm! Thanks art for your patience :smileygrin: Now will start looking the original problem!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 22:52:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56157#M15682</guid>
      <dc:creator>carbs</dc:creator>
      <dc:date>2012-02-16T22:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56158#M15683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Say you have a dataset named “have” below;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" cellpadding="0" cellspacing="1" style="background-color: #f0f0f0; border: black 1pt solid; padding: 5.25pt;" summary="Procedure Print: Data Set WORK.HAVE2"&gt;&lt;THEAD&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-family: 'Arial','sans-serif';"&gt;Obs&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-family: 'Arial','sans-serif';"&gt;date&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-family: 'Arial','sans-serif';"&gt;quantity&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-family: 'Arial','sans-serif';"&gt;price&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-family: 'Arial','sans-serif';"&gt;totalprice&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;1&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200001&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;2&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200002&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;3&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200003&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;4&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200004&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;5&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200005&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;6&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200006&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;7&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200007&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;8&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200008&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;9&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200009&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;10&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200010&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;11&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200011&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;12&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200012&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;13&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200101&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;14&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200102&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;15&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200103&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;16&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200104&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;17&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200105&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;18&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200106&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;19&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200107&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;20&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200108&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;21&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200109&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;22&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200110&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;23&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200111&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 8pt; font-family: 'Arial','sans-serif';"&gt;24&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;200112&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;50&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; have1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; have;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date1 = put(date,&lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;6.&lt;/STRONG&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date2 = input(date1, &lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: teal; font-size: 10pt;"&gt;yymmn6.&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; date2 &lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: teal; font-size: 10pt;"&gt;monyy7.&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; quarter = qtr(date2);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; year = year(date2);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;sort&lt;/STRONG&gt; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; = have1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;by&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; year quarter;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;ods&lt;/SPAN&gt; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;trace&lt;/SPAN&gt; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;on&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;means&lt;/STRONG&gt; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; = have1 &lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;sum&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; quantity price totalprice;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; year quarter;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;ods&lt;/SPAN&gt; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;output&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; summary=out1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;ods&lt;/SPAN&gt; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;trace&lt;/SPAN&gt; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;off&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; havefinal (drop = Nobs VName_quantity VName_price VName_totalprice);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; out1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;ods&lt;/SPAN&gt; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;html&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;print&lt;/STRONG&gt; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt; = havefinal &lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;noobs&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;ods&lt;/SPAN&gt; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;html&lt;/SPAN&gt; &lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 10pt;"&gt;close&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" cellpadding="0" cellspacing="1" style="background-color: #f0f0f0; border: black 1pt solid; padding: 5.25pt;" summary="Procedure Print: Data Set WORK.HAVEFINAL"&gt;&lt;THEAD&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 12pt; font-family: 'Arial','sans-serif';"&gt;year&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 12pt; font-family: 'Arial','sans-serif';"&gt;quarter&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 12pt; font-family: 'Arial','sans-serif';"&gt;quantity_Sum&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 12pt; font-family: 'Arial','sans-serif';"&gt;price_Sum&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;STRONG style="color: #002288; font-size: 12pt; font-family: 'Arial','sans-serif';"&gt;totalprice_Sum&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;2000&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;30&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;15&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;150&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;2000&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;30&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;15&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;150&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;2000&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;30&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;15&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;150&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;2000&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;4&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;30&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;15&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;150&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;2001&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;30&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;15&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;150&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;2001&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;30&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;15&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;150&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;2001&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;30&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;15&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;150&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;2001&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;4&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;30&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;15&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="border: black 1pt inset; padding: 5.25pt;" valign="top"&gt;&lt;P align="right"&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: #002288; font-size: 8pt;"&gt;150&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have country variable then just add country before year in PROC SORT and PROC MEANS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 23:24:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56158#M15683</guid>
      <dc:creator>VX_Xc</dc:creator>
      <dc:date>2012-02-16T23:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56159#M15684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try the method proposed by &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://communities.sas.com/people/ballardw" id="jive-26019829947521462743803"&gt;ballardw&lt;/A&gt; ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 06:47:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56159#M15684</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-02-17T06:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56160#M15685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, never been easier! Also ballardw's code was correct and easy to use! Still one question, if I want to form sixmonth data instead of quarterly, how could that be applied, since there's no direct way of telling it to sas like in the case of quarter (using qtr).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 07:22:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56160#M15685</guid>
      <dc:creator>carbs</dc:creator>
      <dc:date>2012-02-17T07:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56161#M15686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can try to&amp;nbsp; use another format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;format month6.&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 08:36:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56161#M15686</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-02-17T08:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56162#M15687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This solved part of the problem using ballardw's formula. However it just calculates all of countries quarterly/sixmonth returns together, how can I adjust it to get results per country? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Courier New; color: #000080; font-size: 10pt;"&gt;&lt;SPAN style="color: #000080; font-size: 10pt; font-family: Courier New;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2012 13:22:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56162#M15687</guid>
      <dc:creator>carbs</dc:creator>
      <dc:date>2012-02-20T13:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56163#M15688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't recall you having mentioned Country before.&amp;nbsp; If it is a field you have, just add it at the beginning of the Class statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2012 14:45:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56163#M15688</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-20T14:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56164#M15689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post some sample data and the output you want&amp;nbsp; be?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2012 08:15:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56164#M15689</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-02-21T08:15:35Z</dc:date>
    </item>
    <item>
      <title>from monthly dataset to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56165#M15690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I've attached to the first post two files, forum and forum1. First of them is the format I have the data now. Forum1 is the outcome using Vx=Xc's code, which was just how I wanted the results to be... However I need two different sets also, where there is 6month data instead of quarter, and also the case where there is only yearly data for each country. Couldn't do this with that code, maybe easier using ballardw's code..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2012 09:26:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/from-monthly-dataset-to-quarterly/m-p/56165#M15690</guid>
      <dc:creator>carbs</dc:creator>
      <dc:date>2012-02-21T09:26:25Z</dc:date>
    </item>
  </channel>
</rss>

