<?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: proc expand - a problem with converting data from yearly to quarterly in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184489#M46914</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for noting, but it's not the cause. I've corrected the typo and still get the error message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input year country $:1. value;&lt;/P&gt;&lt;P&gt;&amp;nbsp; datalines;&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000 A 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001 A 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;proc expand data=have out=want from=year to=qtr;&lt;/P&gt;&lt;P&gt;&amp;nbsp; convert value;&lt;/P&gt;&lt;P&gt;&amp;nbsp; id year;&lt;/P&gt;&lt;P&gt;&amp;nbsp; by country;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: Duplicate time interval found at observation number 2 in the data set WORK.HAVE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; according to the FROM=YEAR option and the ID variable values. The current ID is year=2001&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and the previous is year=2000, which are within the same YEAR interval.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Check that FROM=YEAR is correct for this data set, and that the ID variable year contains&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS date or datetime values that correctly identify the observations.&lt;/P&gt;&lt;P&gt;NOTE: Execution is aborted because of invalid ID values or invalid FROM= option.&lt;/P&gt;&lt;P&gt;NOTE: The above message was for the following BY group:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; country=A&lt;/P&gt;&lt;P&gt;ERROR: Duplicate time interval found at observation number 4 in the data set WORK.HAVE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; according to the FROM=YEAR option and the ID variable values. The current ID is year=2001&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and the previous is year=2000, which are within the same YEAR interval.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Check that FROM=YEAR is correct for this data set, and that the ID variable year contains&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS date or datetime values that correctly identify the observations.&lt;/P&gt;&lt;P&gt;NOTE: Execution is aborted because of invalid ID values or invalid FROM= option.&lt;/P&gt;&lt;P&gt;NOTE: The above message was for the following BY group:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; country=B&lt;/P&gt;&lt;P&gt;NOTE: There were 4 observations read from the data set WORK.HAVE.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WANT has 0 observations and 3 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE EXPAND used (Total process time):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.03 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.03 seconds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Jan 2015 14:28:28 GMT</pubDate>
    <dc:creator>chris2377</dc:creator>
    <dc:date>2015-01-15T14:28:28Z</dc:date>
    <item>
      <title>proc expand - a problem with converting data from yearly to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184487#M46912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dataset with yearly observations that I want to transform to have quarterly frequency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input year country $:1. value;&lt;/P&gt;&lt;P&gt;&amp;nbsp; datalines;&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000 A 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001 A 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; format year year4.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input period :$6. country :$1. value;&lt;/P&gt;&lt;P&gt;&amp;nbsp; datalines;&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000Q1 A 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000Q2 A 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000Q3 A 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000Q4 A 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001Q1 A 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001Q2 A 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001Q3 A 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001Q4 A 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000Q1 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000Q2 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000Q3 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000Q4 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001Q1 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001Q2 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001Q3 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001Q4 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried to use proc expand in the following way (following SAS documentation to the procedure):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc expand data=have out=want from=year to=qtr;&lt;/P&gt;&lt;P&gt;&amp;nbsp; convert value;&lt;/P&gt;&lt;P&gt;&amp;nbsp; id year;&lt;/P&gt;&lt;P&gt;&amp;nbsp; by country;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but got the following error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: Duplicate time interval found at observation number 2 in the data set WORK.HAVE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; according to the FROM=YEAR option and the ID variable values. The current ID is year=2001&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and the previous is year=2000, which are within the same YEAR interval.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Check that FROM=YEAR is correct for this data set, and that the ID variable year contains&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS date or datetime values that correctly identify the observations.&lt;/P&gt;&lt;P&gt;NOTE: Execution is aborted because of invalid ID values or invalid FROM= option.&lt;/P&gt;&lt;P&gt;NOTE: The above message was for the following BY group:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; country=A&lt;/P&gt;&lt;P&gt;ERROR: Observation with duplicate ID value found. The value of the ID variable, year=2000, at&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; observation number 4 in data set WORK.HAVE is the same as the previous observation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What am I doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 14:12:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184487#M46912</guid>
      <dc:creator>chris2377</dc:creator>
      <dc:date>2015-01-15T14:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: proc expand - a problem with converting data from yearly to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184488#M46913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have a typo. Start year and ending year of B is both 2000. There is nothing to interpolate for proc expand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 14:16:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184488#M46913</guid>
      <dc:creator>user24feb</dc:creator>
      <dc:date>2015-01-15T14:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: proc expand - a problem with converting data from yearly to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184489#M46914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for noting, but it's not the cause. I've corrected the typo and still get the error message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input year country $:1. value;&lt;/P&gt;&lt;P&gt;&amp;nbsp; datalines;&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000 A 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001 A 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2000 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2001 B 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;proc expand data=have out=want from=year to=qtr;&lt;/P&gt;&lt;P&gt;&amp;nbsp; convert value;&lt;/P&gt;&lt;P&gt;&amp;nbsp; id year;&lt;/P&gt;&lt;P&gt;&amp;nbsp; by country;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: Duplicate time interval found at observation number 2 in the data set WORK.HAVE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; according to the FROM=YEAR option and the ID variable values. The current ID is year=2001&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and the previous is year=2000, which are within the same YEAR interval.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Check that FROM=YEAR is correct for this data set, and that the ID variable year contains&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS date or datetime values that correctly identify the observations.&lt;/P&gt;&lt;P&gt;NOTE: Execution is aborted because of invalid ID values or invalid FROM= option.&lt;/P&gt;&lt;P&gt;NOTE: The above message was for the following BY group:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; country=A&lt;/P&gt;&lt;P&gt;ERROR: Duplicate time interval found at observation number 4 in the data set WORK.HAVE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; according to the FROM=YEAR option and the ID variable values. The current ID is year=2001&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and the previous is year=2000, which are within the same YEAR interval.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Check that FROM=YEAR is correct for this data set, and that the ID variable year contains&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS date or datetime values that correctly identify the observations.&lt;/P&gt;&lt;P&gt;NOTE: Execution is aborted because of invalid ID values or invalid FROM= option.&lt;/P&gt;&lt;P&gt;NOTE: The above message was for the following BY group:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; country=B&lt;/P&gt;&lt;P&gt;NOTE: There were 4 observations read from the data set WORK.HAVE.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WANT has 0 observations and 3 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE EXPAND used (Total process time):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.03 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.03 seconds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 14:28:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184489#M46914</guid>
      <dc:creator>chris2377</dc:creator>
      <dc:date>2015-01-15T14:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: proc expand - a problem with converting data from yearly to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184490#M46915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a data step version solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;data have;
&amp;nbsp; input year country $:1. value;
&amp;nbsp; datalines;
&amp;nbsp; 2000 A 1
&amp;nbsp; 2001 A 0
&amp;nbsp; 2000 B 1
&amp;nbsp; 2001 B 1
&amp;nbsp; ;
run;
data want;
 set have;
 do i=1 to 4 ;
&amp;nbsp; date=yyq(year,i);
&amp;nbsp; output;
 end;
 format date yyq.;
 drop i year;
run;

&lt;/PRE&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;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 14:31:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184490#M46915</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-01-15T14:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: proc expand - a problem with converting data from yearly to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184491#M46916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, it gives me what I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 14:34:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184491#M46916</guid>
      <dc:creator>chris2377</dc:creator>
      <dc:date>2015-01-15T14:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: proc expand - a problem with converting data from yearly to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184492#M46917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're right. Proc expand requires a date. That caused the error. This would work without errors, but I am afraid there is no interpolation method like you described above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;BR /&gt;&amp;nbsp; input year country $:1. value;&lt;BR /&gt;&amp;nbsp; YearDate=MDY(1,1,Year); Format YearDate Date9.;&lt;BR /&gt;&amp;nbsp; datalines;&lt;BR /&gt;&amp;nbsp; 2000 A 1&lt;BR /&gt;&amp;nbsp; 2001 A 0&lt;BR /&gt;&amp;nbsp; 2000 B 1&lt;BR /&gt;&amp;nbsp; 2001 B 1&lt;BR /&gt;&amp;nbsp; ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;Proc Expand Data=Have Out=Want From=Year To=Qtr;&lt;BR /&gt;&amp;nbsp; Convert value=value_new / Observed=Ending;&lt;BR /&gt;&amp;nbsp; ID YearDate;&lt;BR /&gt;&amp;nbsp; By country;&lt;BR /&gt;Run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 14:39:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184492#M46917</guid>
      <dc:creator>user24feb</dc:creator>
      <dc:date>2015-01-15T14:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: proc expand - a problem with converting data from yearly to quarterly</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184493#M46918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for help. I didn't notice the problem with date format. Dates in SAS are still tricky for me from time to time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 14:56:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-expand-a-problem-with-converting-data-from-yearly-to/m-p/184493#M46918</guid>
      <dc:creator>chris2377</dc:creator>
      <dc:date>2015-01-15T14:56:07Z</dc:date>
    </item>
  </channel>
</rss>

