<?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: Difference in Days for Consecutive Years in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425959#M104922</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/89223"&gt;@jsandsk&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;&lt;SPAN&gt;I noticed once I applied this to my full dataset that instances where there were observations &amp;gt;0, it shows as missing. Otherwise the formatting and zero counts are fine. What could be wrong with the calculations?&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;What do you mean by observations&amp;gt;0, can you show a sample of what you mean and what's happening?&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jan 2018 04:13:34 GMT</pubDate>
    <dc:creator>novinosrin</dc:creator>
    <dc:date>2018-01-09T04:13:34Z</dc:date>
    <item>
      <title>Difference in Days for Consecutive Years</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425007#M104669</link>
      <description>&lt;P&gt;Hi. I have a set of data where I need to split out the number of days a patient was hospitalized in a given year. I want a streamlined approach to this as I realize the dif function still requires a bit of coding and not exactly what I'd like. Any suggestions are appreciated, thx.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Days &amp;nbsp; FromDate &amp;nbsp; &amp;nbsp; EndDate&lt;/P&gt;&lt;P&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;22NOV2011 &amp;nbsp;22NOV2011&lt;/P&gt;&lt;P&gt;21 &amp;nbsp; &amp;nbsp; &amp;nbsp;23NOV2011 &amp;nbsp;13DEC2011&lt;/P&gt;&lt;P&gt;64 &amp;nbsp; &amp;nbsp; &amp;nbsp;14DEC2011 &amp;nbsp;15FEB2012&lt;/P&gt;&lt;P&gt;664 &amp;nbsp; &amp;nbsp;01JAN2010 &amp;nbsp; 26OCT2011&lt;/P&gt;&lt;P&gt;2191 &amp;nbsp;01JAN2010 &amp;nbsp; 31DEC2015&lt;/P&gt;&lt;P&gt;1793 &amp;nbsp;01JAN2014 &amp;nbsp; 28NOV2014&lt;/P&gt;&lt;P&gt;833 &amp;nbsp; &amp;nbsp;25MAR2010 &amp;nbsp;04JUL2012&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the issue is the EndDates that extend into the following year. For instance in line 3, how do I process how many days of the total 64 are in 2011 and how many are 2012 and still create a flag for each year? This is what I'd like to end up with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Days &amp;nbsp; FromDate &amp;nbsp; &amp;nbsp; EndDate &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CY2011 &amp;nbsp; CY2012 &amp;nbsp; Days2011 &amp;nbsp; Days2012&lt;/P&gt;&lt;P&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;22NOV2011 &amp;nbsp;22NOV2011 &amp;nbsp; &amp;nbsp; &amp;nbsp;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;&lt;P&gt;21 &amp;nbsp; &amp;nbsp; &amp;nbsp;23NOV2011 &amp;nbsp;13DEC2011 &amp;nbsp; &amp;nbsp; &amp;nbsp;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;21 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;&lt;P&gt;64 &amp;nbsp; &amp;nbsp; &amp;nbsp;14DEC2011 &amp;nbsp;15FEB2012 &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 18 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;46&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2018 18:03:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425007#M104669</guid>
      <dc:creator>jsandsk</dc:creator>
      <dc:date>2018-01-04T18:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Days for Consecutive Years</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425011#M104672</link>
      <description>&lt;P&gt;The INTCK function will give you the number of days in a given year.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Creating flags can be done easily by the IFN function (or IF-THEN commands).&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2018 18:22:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425011#M104672</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-01-04T18:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Days for Consecutive Years</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425042#M104681</link>
      <description>&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt; have;&lt;/P&gt;&lt;P&gt;input Days&amp;nbsp;&amp;nbsp; FromDate :date9.&amp;nbsp;&amp;nbsp;&amp;nbsp; EndDate :date9.;&lt;/P&gt;&lt;P&gt;format FromDate EndDate date9.;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 22NOV2011&amp;nbsp; 22NOV2011&lt;/P&gt;&lt;P&gt;21&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 23NOV2011&amp;nbsp; 13DEC2011&lt;/P&gt;&lt;P&gt;64&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 14DEC2011&amp;nbsp; 15FEB2012&lt;/P&gt;&lt;P&gt;664&amp;nbsp;&amp;nbsp;&amp;nbsp; 01JAN2010&amp;nbsp;&amp;nbsp; 26OCT2011&lt;/P&gt;&lt;P&gt;2191&amp;nbsp; 01JAN2010&amp;nbsp;&amp;nbsp; 31DEC2015&lt;/P&gt;&lt;P&gt;1793&amp;nbsp; 01JAN2014&amp;nbsp;&amp;nbsp; 28NOV2014&lt;/P&gt;&lt;P&gt;833&amp;nbsp;&amp;nbsp;&amp;nbsp; 25MAR2010&amp;nbsp; 04JUL2012&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;sql&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;select min(year(FromDate)), max(year(endDate)) into : min_ar TRIMMED, :max_ar TRIMMED&lt;/P&gt;&lt;P&gt;from have;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;quit&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt; want;&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;array t(&amp;amp;min_ar:&amp;amp;max_ar) days&amp;amp;min_ar-days&amp;amp;max_ar;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do _n_=&amp;amp;min_ar to &amp;amp;max_ar;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; t(_n_)=&lt;STRONG&gt;0&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;_year=year(enddate)-year(FromDate);&lt;/P&gt;&lt;P&gt;if _year=&lt;STRONG&gt;0&lt;/STRONG&gt; then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _n_=year(enddate);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _t=intck('days',FromDate,enddate)+&lt;STRONG&gt;1&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; t(_n_)=_t;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;else if _year&amp;gt;&lt;STRONG&gt;0&lt;/STRONG&gt; then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do _n_=year(fromdate) to year(enddate);&lt;/P&gt;&lt;P&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; if _n_=year(fromdate) then _t=intck('days',FromDate,intnx('year', FromDate, &lt;STRONG&gt;0&lt;/STRONG&gt;, 'e'))+&lt;STRONG&gt;1&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&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; else if _n_&amp;gt;year(fromdate) and _n_&amp;lt;year(enddate) then _t=intck('days',mdy(&lt;STRONG&gt;1&lt;/STRONG&gt;,&lt;STRONG&gt;1&lt;/STRONG&gt;,_n_),intnx('year',mdy(&lt;STRONG&gt;1&lt;/STRONG&gt;,&lt;STRONG&gt;1&lt;/STRONG&gt;,_n_), &lt;STRONG&gt;0&lt;/STRONG&gt;, 'e'))+&lt;STRONG&gt;1&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&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; else if _n_=year(enddate) then _t=intck('days',mdy(&lt;STRONG&gt;1&lt;/STRONG&gt;,&lt;STRONG&gt;1&lt;/STRONG&gt;,_n_),enddate)+&lt;STRONG&gt;1&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&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; t(_n_)=_t;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop _:;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2018 20:06:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425042#M104681</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-01-04T20:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Days for Consecutive Years</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425046#M104684</link>
      <description>&lt;P&gt;My concerns:&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/89223"&gt;@jsandsk&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sir/Madam,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I know you haven't provided the full dataset with &lt;STRONG&gt;patient ids&lt;/STRONG&gt;, so I am guessing you would come up with that later to tweak&lt;/P&gt;&lt;P&gt;2. in your sample,&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;1793 &amp;nbsp;01JAN2014 &amp;nbsp; 28NOV2014&amp;nbsp; &lt;EM&gt;&amp;nbsp;this interval is only 332 days &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; and not 1793 days .&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt; I am not smart or creative, so i need precise immaculate samples to test&lt;/P&gt;&lt;P&gt;3. Kudos for offering a very interesting problem. I loved it&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2018 21:05:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425046#M104684</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-01-04T21:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Days for Consecutive Years</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425123#M104704</link>
      <description>&lt;P&gt;Oh yes thanks for the observation that was an error in number of days.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2018 03:06:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425123#M104704</guid>
      <dc:creator>jsandsk</dc:creator>
      <dc:date>2018-01-05T03:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Days for Consecutive Years</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425128#M104706</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/89223"&gt;@jsandsk&lt;/a&gt;&amp;nbsp;Ok great!, Do feel free to have any follow up questions if it relates to the same thread here otherwise of course you can always open up a new thread if you are looking for a new solution. Have fun! cheers&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2018 03:38:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425128#M104706</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-01-05T03:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Days for Consecutive Years</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425236#M104732</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Days   FromDate :date9.    EndDate :date9.;
format FromDate EndDate date9.;
datalines;
1        22NOV2011  22NOV2011
21      23NOV2011  13DEC2011
64      14DEC2011  15FEB2012
664    01JAN2010   26OCT2011
2191  01JAN2010   31DEC2015
1793  01JAN2014   28NOV2014
833    25MAR2010  04JUL2012
;

data temp;
 set have;
 do date=FromDate to EndDate;
  year=year(date);output;
 end;
run;
proc summary data=temp nway;
class Days   FromDate   EndDate year;
output out=temp1;
run;
data temp2;
 set temp1;
 retain have 1;
run;
proc transpose data=temp2 out=x1 prefix=cy;
by Days   FromDate   EndDate;
id year;
var have;
run;
proc transpose data=temp2 out=x2 prefix=days;
by Days   FromDate   EndDate;
id year;
var _freq_;
run;
data x3;
 merge x1 x2;
 by Days   FromDate   EndDate;
 drop _name_;
 run;
proc stdize data=x3 out=want reponly missing=0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Jan 2018 14:22:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425236#M104732</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-01-05T14:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Days for Consecutive Years</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425956#M104921</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I noticed once I applied this to my full dataset that instances where there were observations &amp;gt;0, it shows as missing. Otherwise the formatting and zero counts are fine. What could be wrong with the calculations?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 02:16:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425956#M104921</guid>
      <dc:creator>jsandsk</dc:creator>
      <dc:date>2018-01-09T02:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Difference in Days for Consecutive Years</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425959#M104922</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/89223"&gt;@jsandsk&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;&lt;SPAN&gt;I noticed once I applied this to my full dataset that instances where there were observations &amp;gt;0, it shows as missing. Otherwise the formatting and zero counts are fine. What could be wrong with the calculations?&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;What do you mean by observations&amp;gt;0, can you show a sample of what you mean and what's happening?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 04:13:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Difference-in-Days-for-Consecutive-Years/m-p/425959#M104922</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-01-09T04:13:34Z</dc:date>
    </item>
  </channel>
</rss>

