<?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 between two dates greater then 28 in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155655#M40889</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote" modifiedtitle="true"&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I have data set with&amp;nbsp; ID and with multiple VISITDATES......my query should output the records where difference between two successive visit dates is greater then 28 within a ID. hope it helps......&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;But that's what the code above has provided&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Mar 2014 15:29:17 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2014-03-25T15:29:17Z</dc:date>
    <item>
      <title>Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155645#M40879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have dataset with three varaibles id startdate enddate. Dates are numerical sas formats.&lt;/P&gt;&lt;P&gt;I would like to pull out the records for id where the difference between the two succesive START dates is more then 28 days. There will be few missing dates too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp; STARTDATE ENDDATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;001&amp;nbsp;&amp;nbsp; 19583&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19604&lt;/P&gt;&lt;P&gt;001&amp;nbsp;&amp;nbsp; 19589&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19609&lt;/P&gt;&lt;P&gt;001&amp;nbsp;&amp;nbsp; 19600&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19610&lt;/P&gt;&lt;P&gt;001&amp;nbsp;&amp;nbsp; 19628&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19638&lt;/P&gt;&lt;P&gt;001&amp;nbsp;&amp;nbsp; 19480&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19520&lt;/P&gt;&lt;P&gt;002&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;/P&gt;&lt;P&gt;002&amp;nbsp;&amp;nbsp; 19620&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19624&lt;/P&gt;&lt;P&gt;002&amp;nbsp;&amp;nbsp; 19630&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19634&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 12:24:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155645#M40879</guid>
      <dc:creator>rakeshvvv</dc:creator>
      <dc:date>2014-03-25T12:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155646#M40880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: navy; font-size: 10pt; background: white; font-family: Consolas;"&gt;&lt;STRONG&gt;Hi Try this,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: navy; font-size: 10pt; background: white; font-family: Consolas;"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt; test;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: blue; font-size: 10pt;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt; ID &lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: teal; font-size: 10pt;"&gt;$3.&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp; STARTDATE ENDDATE;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: blue; font-size: 10pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt; startdate-lag(startdate)&amp;gt;=&lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: Consolas;"&gt;&lt;STRONG&gt;28&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: blue; font-size: 10pt;"&gt;cards&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: #ffffc0; color: black; font-size: 10pt;"&gt;001&amp;nbsp;&amp;nbsp; 19583&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19604&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: #ffffc0; color: black; font-size: 10pt;"&gt;001&amp;nbsp;&amp;nbsp; 19589&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19609&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: #ffffc0; color: black; font-size: 10pt;"&gt;001&amp;nbsp;&amp;nbsp; 19600&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19610&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: #ffffc0; color: black; font-size: 10pt;"&gt;001&amp;nbsp;&amp;nbsp; 19628&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19638&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: #ffffc0; color: black; font-size: 10pt;"&gt;001&amp;nbsp;&amp;nbsp; 19480&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19520&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: #ffffc0; color: black; font-size: 10pt;"&gt;002&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: Consolas; background: #ffffc0; color: black; font-size: 10pt;"&gt;002&amp;nbsp;&amp;nbsp; 19620&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19624&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: #ffffc0; color: black; font-size: 10pt;"&gt;002&amp;nbsp;&amp;nbsp; 19630&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19634&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: navy; font-size: 10pt; background: white; font-family: Consolas;"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;output:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: #ffffc0; color: black; font-size: 10pt;"&gt;001&amp;nbsp;&amp;nbsp; 19628&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19638&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: navy; font-size: 10pt;"&gt;&lt;STRONG&gt;-&amp;gt;use sum function if you want dates after missing dates to be displayed &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: blue; font-size: 10pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt; sum(startdate,-lag(startdate))&amp;gt;=&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: teal; font-size: 10pt;"&gt;&lt;STRONG&gt;28&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 12:42:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155646#M40880</guid>
      <dc:creator>pradeepalankar</dc:creator>
      <dc:date>2014-03-25T12:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155647#M40881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply. It answered my query partially but I would like to calculate diff between dates for ID Specific. The logic you gave is working but it working across all the id's and it outputting even when the difference between two dates is greater then 28 for two different id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 13:23:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155647#M40881</guid>
      <dc:creator>rakeshvvv</dc:creator>
      <dc:date>2014-03-25T13:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155648#M40882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, using the LAG function, you test to see if the ID of the current observation matches the ID of the previous observation, and also using the LAG function test to see if the dates are greater than 28.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 13:28:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155648#M40882</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-03-25T13:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155649#M40883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;change if condition to&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; background: white; color: blue; font-size: 10pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt; id=lag(id) and startdate-lag(startdate)&amp;gt;=&lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10pt; background: white; font-family: Consolas;"&gt;28&lt;/STRONG&gt;&lt;SPAN style="font-family: Consolas; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 13:35:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155649#M40883</guid>
      <dc:creator>pradeepalankar</dc:creator>
      <dc:date>2014-03-25T13:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155650#M40884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks....its working.....is there any other option....we can use like(Group by ID as we do SQL and use lag function ) ......my query is more about finding the discrepancies of id's with dates greater then 28.....any query with group by id and using the lag function would be prefect fit for me......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 13:43:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155650#M40884</guid>
      <dc:creator>rakeshvvv</dc:creator>
      <dc:date>2014-03-25T13:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155651#M40885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how you want your output data to look like...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 13:59:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155651#M40885</guid>
      <dc:creator>pradeepalankar</dc:creator>
      <dc:date>2014-03-25T13:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155652#M40886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;
&lt;P&gt;rakeshvvv wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks....its working.....is there any other option....we can use like(Group by ID as we do SQL and use lag function ) ......my query is more about finding the discrepancies of id's with dates greater then 28.....any query with group by id and using the lag function would be prefect fit for me......&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;I don't understand what you are asking for ... or how it is different than what we have already explained ... an example would definitely help. It also sounds like (although you don't specifically state this) that you are asking for a PROC SQL solution. Are you asking for a PROC SQL solution? If so, why does it have to be PROC SQL when a data step works perfectly well?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 14:14:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155652#M40886</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-03-25T14:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155653#M40887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are saying that you only want one record per ID, just to identify the offending IDs, this would be a way.&amp;nbsp; It assumes your SAS data set is sorted by ID STARTDATE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; do until (last.id);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; prior_start = startdate;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by id;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if first.id=0 and startdate - prior_start &amp;gt;= 28 then wanted='Y';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if wanted='Y';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; keep id;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL would likely not be an option to accomplish this, since it doesn't guarantee the order of the incoming records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 14:15:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155653#M40887</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2014-03-25T14:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155654#M40888</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 set with&amp;nbsp; ID and with multiple VISITDATES......my query should output the records where difference between two successive visit dates is greater then 28 within a ID. hope it helps......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 14:23:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155654#M40888</guid>
      <dc:creator>rakeshvvv</dc:creator>
      <dc:date>2014-03-25T14:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155655#M40889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote" modifiedtitle="true"&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I have data set with&amp;nbsp; ID and with multiple VISITDATES......my query should output the records where difference between two successive visit dates is greater then 28 within a ID. hope it helps......&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;But that's what the code above has provided&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 15:29:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155655#M40889</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-03-25T15:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two dates greater then 28</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155656#M40890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is similar to a 30 day readmission problem in medical studies. Search on here and you'll find SQL solutions to that effect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's a common request/issue. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 15:32:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Difference-between-two-dates-greater-then-28/m-p/155656#M40890</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-03-25T15:32:57Z</dc:date>
    </item>
  </channel>
</rss>

