<?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: Reconciliation of prescription dates in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420503#M103496</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/125494"&gt;@skyvalley81&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi Reeza,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for getting back.&lt;/P&gt;
&lt;P&gt;That is right we reorder the drugs based on the drug on the last prescription date. I am involved in a research project and i would like to calculate persistence/adherence on some medications.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have any idea how i can approach it? &amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If that's the case, I would be sorting by drug - not date and then following that drug over time.&amp;nbsp; Because you're trying to see if a patient stayed with a specific drug for a specific duration?&lt;/P&gt;</description>
    <pubDate>Tue, 12 Dec 2017 15:44:43 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-12-12T15:44:43Z</dc:date>
    <item>
      <title>Reconciliation of prescription dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420327#M103437</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a dataset containing patients, date of treatment and the drug that was prescribed.&lt;BR /&gt;When there are more than two different drugs on the same prescription date I need to check if one of the drugs was also the last drug on the previous prescription date&lt;BR /&gt;and place this product first and order the other same date by drugcode.&lt;/P&gt;&lt;P&gt;Could you please suggest me how I can approach this problem?&lt;/P&gt;&lt;P&gt;Thanks in advance for your help.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Below you can find the datasets:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="treatment.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17154i3603769EBF313589/image-size/large?v=v2&amp;amp;px=999" role="button" title="treatment.png" alt="treatment.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;BR /&gt;input id:$3. dxdate:date9. treatment:$6. dupDrugFn:8.;&lt;BR /&gt;format dxdate date9. ;&lt;BR /&gt;cards;&lt;BR /&gt;100 09MAY2006 drug1 0&lt;BR /&gt;100 24OCT2006 drug1 0&lt;BR /&gt;100 19APR2007 drug1 0&lt;BR /&gt;100 17DEC2007 drug1 0&lt;BR /&gt;100 07JUL2008 drug1 0&lt;BR /&gt;100 13AUG2008 drug2 0&lt;BR /&gt;100 09JUN2009 drug2 1&lt;BR /&gt;100 09JUN2009 drug1 1&lt;BR /&gt;100 28OCT2009 drug2 1&lt;BR /&gt;100 28OCT2009 drug1 1&lt;BR /&gt;100 19MAR2010 drug3 1&lt;BR /&gt;100 19MAR2010 drug4 1&lt;BR /&gt;100 26MAR2010 drug3 1&lt;BR /&gt;100 26MAR2010 drug4 1&lt;BR /&gt;100 15DEC2010 drug3 1&lt;BR /&gt;100 15DEC2010 drug4 1&lt;BR /&gt;100 15NOV2011 drug3 1&lt;BR /&gt;100 15NOV2011 drug4 1&lt;BR /&gt;100 21MAY2012 drug3 1&lt;BR /&gt;100 21MAY2012 drug5 1&lt;BR /&gt;100 05FEB2013 drug6 0&lt;BR /&gt;100 14JUN2013 drug5 0&lt;BR /&gt;100 26JUL2013 drug7 0&lt;BR /&gt;100 02JAN2014 drug6 1&lt;BR /&gt;100 02JAN2014 drug5 1&lt;BR /&gt;100 02JAN2014 drug7 1&lt;BR /&gt;100 02FEB2016 drug8 1&lt;BR /&gt;100 02FEB2016 drug6 1&lt;BR /&gt;100 02FEB2016 drug5 1&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data have;&lt;BR /&gt;input id:$3. dxdate:date9. treatment:$6. dupDrugFn:8.;&lt;BR /&gt;format dxdate date9. ;&lt;BR /&gt;cards;&lt;BR /&gt;100 09MAY2006 drug1 0&lt;BR /&gt;100 24OCT2006 drug1 0&lt;BR /&gt;100 19APR2007 drug1 0&lt;BR /&gt;100 17DEC2007 drug1 0&lt;BR /&gt;100 07JUL2008 drug1 0&lt;BR /&gt;100 13AUG2008 drug2 0&lt;BR /&gt;100 09JUN2009 drug2 1&lt;BR /&gt;100 09JUN2009 drug1 1&lt;BR /&gt;100 28OCT2009 drug1 1&lt;BR /&gt;100 28OCT2009 drug2 1&lt;BR /&gt;100 19MAR2010 drug3 1&lt;BR /&gt;100 19MAR2010 drug4 1&lt;BR /&gt;100 26MAR2010 drug4 1&lt;BR /&gt;100 26MAR2010 drug3 1&lt;BR /&gt;100 15DEC2010 drug3 1&lt;BR /&gt;100 15DEC2010 drug4 1&lt;BR /&gt;100 15NOV2011 drug4 1&lt;BR /&gt;100 15NOV2011 drug3 1&lt;BR /&gt;100 21MAY2012 drug3 1&lt;BR /&gt;100 21MAY2012 drug5 1&lt;BR /&gt;100 05FEB2013 drug6 0&lt;BR /&gt;100 14JUN2013 drug5 0&lt;BR /&gt;100 26JUL2013 drug7 0&lt;BR /&gt;100 02JAN2014 drug7 1&lt;BR /&gt;100 02JAN2014 drug5 1&lt;BR /&gt;100 02JAN2014 drug6 1&lt;BR /&gt;100 02FEB2016 drug6 1&lt;BR /&gt;100 02FEB2016 drug5 1&lt;BR /&gt;100 02FEB2016 drug8 1&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 00:31:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420327#M103437</guid>
      <dc:creator>skyvalley81</dc:creator>
      <dc:date>2017-12-12T00:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Reconciliation of prescription dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420334#M103440</link>
      <description>&lt;P&gt;Can you highlight the differences between have and want and specify the logic?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: It looks like it's been sorted by date and then drug but I can't see any differences beyond that.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that's all you want use PROC SORT.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=have;
by id date drug;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/125494"&gt;@skyvalley81&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a dataset containing patients, date of treatment and the drug that was prescribed.&lt;BR /&gt;When there are more than two different drugs on the same prescription date I need to check if one of the drugs was also the last drug on the previous prescription date&lt;BR /&gt;and place this product first and order the other same date by drugcode.&lt;/P&gt;
&lt;P&gt;Could you please suggest me how I can approach this problem?&lt;/P&gt;
&lt;P&gt;Thanks in advance for your help.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Below you can find the datasets:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="treatment.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17154i3603769EBF313589/image-size/large?v=v2&amp;amp;px=999" role="button" title="treatment.png" alt="treatment.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;data have;&lt;BR /&gt;input id:$3. dxdate:date9. treatment:$6. dupDrugFn:8.;&lt;BR /&gt;format dxdate date9. ;&lt;BR /&gt;cards;&lt;BR /&gt;100 09MAY2006 drug1 0&lt;BR /&gt;100 24OCT2006 drug1 0&lt;BR /&gt;100 19APR2007 drug1 0&lt;BR /&gt;100 17DEC2007 drug1 0&lt;BR /&gt;100 07JUL2008 drug1 0&lt;BR /&gt;100 13AUG2008 drug2 0&lt;BR /&gt;100 09JUN2009 drug2 1&lt;BR /&gt;100 09JUN2009 drug1 1&lt;BR /&gt;100 28OCT2009 drug2 1&lt;BR /&gt;100 28OCT2009 drug1 1&lt;BR /&gt;100 19MAR2010 drug3 1&lt;BR /&gt;100 19MAR2010 drug4 1&lt;BR /&gt;100 26MAR2010 drug3 1&lt;BR /&gt;100 26MAR2010 drug4 1&lt;BR /&gt;100 15DEC2010 drug3 1&lt;BR /&gt;100 15DEC2010 drug4 1&lt;BR /&gt;100 15NOV2011 drug3 1&lt;BR /&gt;100 15NOV2011 drug4 1&lt;BR /&gt;100 21MAY2012 drug3 1&lt;BR /&gt;100 21MAY2012 drug5 1&lt;BR /&gt;100 05FEB2013 drug6 0&lt;BR /&gt;100 14JUN2013 drug5 0&lt;BR /&gt;100 26JUL2013 drug7 0&lt;BR /&gt;100 02JAN2014 drug6 1&lt;BR /&gt;100 02JAN2014 drug5 1&lt;BR /&gt;100 02JAN2014 drug7 1&lt;BR /&gt;100 02FEB2016 drug8 1&lt;BR /&gt;100 02FEB2016 drug6 1&lt;BR /&gt;100 02FEB2016 drug5 1&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data have;&lt;BR /&gt;input id:$3. dxdate:date9. treatment:$6. dupDrugFn:8.;&lt;BR /&gt;format dxdate date9. ;&lt;BR /&gt;cards;&lt;BR /&gt;100 09MAY2006 drug1 0&lt;BR /&gt;100 24OCT2006 drug1 0&lt;BR /&gt;100 19APR2007 drug1 0&lt;BR /&gt;100 17DEC2007 drug1 0&lt;BR /&gt;100 07JUL2008 drug1 0&lt;BR /&gt;100 13AUG2008 drug2 0&lt;BR /&gt;100 09JUN2009 drug2 1&lt;BR /&gt;100 09JUN2009 drug1 1&lt;BR /&gt;100 28OCT2009 drug1 1&lt;BR /&gt;100 28OCT2009 drug2 1&lt;BR /&gt;100 19MAR2010 drug3 1&lt;BR /&gt;100 19MAR2010 drug4 1&lt;BR /&gt;100 26MAR2010 drug4 1&lt;BR /&gt;100 26MAR2010 drug3 1&lt;BR /&gt;100 15DEC2010 drug3 1&lt;BR /&gt;100 15DEC2010 drug4 1&lt;BR /&gt;100 15NOV2011 drug4 1&lt;BR /&gt;100 15NOV2011 drug3 1&lt;BR /&gt;100 21MAY2012 drug3 1&lt;BR /&gt;100 21MAY2012 drug5 1&lt;BR /&gt;100 05FEB2013 drug6 0&lt;BR /&gt;100 14JUN2013 drug5 0&lt;BR /&gt;100 26JUL2013 drug7 0&lt;BR /&gt;100 02JAN2014 drug7 1&lt;BR /&gt;100 02JAN2014 drug5 1&lt;BR /&gt;100 02JAN2014 drug6 1&lt;BR /&gt;100 02FEB2016 drug6 1&lt;BR /&gt;100 02FEB2016 drug5 1&lt;BR /&gt;100 02FEB2016 drug8 1&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 01:13:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420334#M103440</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-12-12T01:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reconciliation of prescription dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420348#M103444</link>
      <description>&lt;P&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;Thank you very much for looking into this problem.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="treatment.png" style="width: 338px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17155i8AC6E83380581A0B/image-size/large?v=v2&amp;amp;px=999" role="button" title="treatment.png" alt="treatment.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The logic here is the following:&lt;BR /&gt;1) We examine when there are 2 or more drugs on the same day dupDrugFn = 1. The first date that we have two different drugs is on line 7-8 (09JUN2009).&lt;BR /&gt;2) If any of those products is the same with the drug in the previous date (13AUG2008) then we bring this drug first. In this example, drug2 is already first so we leave it as it is.&lt;BR /&gt;3) Then we move to the next date 28-Oct-2009 (line 9-10). Since the last drug on 9-Jun-2009 is DRUG1 we reverse the order of drugs in lines 9-10 and bring first DRUG1 and then we put DRUG2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The same logic applies to other rows.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I hope it makes more sense now.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 03:23:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420348#M103444</guid>
      <dc:creator>skyvalley81</dc:creator>
      <dc:date>2017-12-12T03:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Reconciliation of prescription dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420350#M103445</link>
      <description>&lt;P&gt;So you’re just changing the ordering. What’s the end goal/need for this?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 03:31:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420350#M103445</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-12-12T03:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reconciliation of prescription dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420352#M103446</link>
      <description>&lt;P&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for getting back.&lt;/P&gt;&lt;P&gt;That is right we reorder the drugs based on the drug on the last prescription date. I am involved in a research project and i would like to calculate persistence/adherence on some medications.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have any idea how i can approach it? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 03:47:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420352#M103446</guid>
      <dc:creator>skyvalley81</dc:creator>
      <dc:date>2017-12-12T03:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Reconciliation of prescription dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420360#M103451</link>
      <description>&lt;P&gt;If you are looking at drug use patterns, you could encode drug sequences as series of letters (ex. "AAABB" : the patient switched from drug A to drug B) and use regular expression pattern matching to look for patterns of interest ( pattern "A+B+" would match). Just an idea.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 05:03:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420360#M103451</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-12-12T05:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: Reconciliation of prescription dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420463#M103481</link>
      <description>&lt;P&gt;OK. How about this one ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input id:$3. dxdate:date9. treatment:$6. dupDrugFn:8.;
format dxdate date9. ;
cards;
100 09MAY2006 drug1 0
100 24OCT2006 drug1 0
100 19APR2007 drug1 0
100 17DEC2007 drug1 0
100 07JUL2008 drug1 0
100 13AUG2008 drug2 0
100 09JUN2009 drug2 1
100 09JUN2009 drug1 1
100 28OCT2009 drug2 1
100 28OCT2009 drug1 1
100 19MAR2010 drug3 1
100 19MAR2010 drug4 1
100 26MAR2010 drug3 1
100 26MAR2010 drug4 1
100 15DEC2010 drug3 1
100 15DEC2010 drug4 1
100 15NOV2011 drug3 1
100 15NOV2011 drug4 1
100 21MAY2012 drug3 1
100 21MAY2012 drug5 1
100 05FEB2013 drug6 0
100 14JUN2013 drug5 0
100 26JUL2013 drug7 0
100 02JAN2014 drug6 1
100 02JAN2014 drug5 1
100 02JAN2014 drug7 1
100 02FEB2016 drug8 1
100 02FEB2016 drug6 1
100 02FEB2016 drug5 1
;
run;
data want;
if _n_=1 then do;
 if 0 then set have;
 declare hash h(ordered:'y');
 declare hiter hi('h');
 h.definekey('treatment');
 h.definedata('treatment');
 h.definedone();
end;
length last $ 40;
retain last;
do until(last.dxdate);
 set have;
 by id 	dxdate;
 h.ref();
end;
if h.find(key:last)=0 then do;
 output;
 h.remove(key:last);
end;
do while(hi.next()=0);
 output;
end;
last=treatment;
h.clear();
drop last;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Dec 2017 14:08:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420463#M103481</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-12-12T14:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Reconciliation of prescription dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420503#M103496</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/125494"&gt;@skyvalley81&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi Reeza,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for getting back.&lt;/P&gt;
&lt;P&gt;That is right we reorder the drugs based on the drug on the last prescription date. I am involved in a research project and i would like to calculate persistence/adherence on some medications.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have any idea how i can approach it? &amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If that's the case, I would be sorting by drug - not date and then following that drug over time.&amp;nbsp; Because you're trying to see if a patient stayed with a specific drug for a specific duration?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 15:44:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420503#M103496</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-12-12T15:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Reconciliation of prescription dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420922#M103562</link>
      <description>&lt;P&gt;Thank you very much all&amp;nbsp;guys&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;,&amp;nbsp;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462"&gt;@PGStats&lt;/a&gt;,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;for looking into this problem.&lt;/P&gt;&lt;P&gt;I will try to digest it and I will come back if I have any questions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again thank you very much&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;for your elegant solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 18:10:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reconciliation-of-prescription-dates/m-p/420922#M103562</guid>
      <dc:creator>skyvalley81</dc:creator>
      <dc:date>2017-12-13T18:10:29Z</dc:date>
    </item>
  </channel>
</rss>

