<?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: Rate Application to Claims Data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/304208#M64736</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below two coding options.&lt;/P&gt;
&lt;P&gt;Option 1 requires your source data to be pre-sorted by key, Option 2 doesn't require any sorting but requires more memory.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  infile datalines truncover;
  input Key Line_No Flag Rate;
datalines;
3217 1 29 102.81
3217 2 29 145.78
3217 3 1 2290
3217 4 23 6942
3217 5 8 2418
3218 1 27 1234
3218 2 28 567
3218 3 29 890
;
run;

/* option 1 */
data want1(drop=_:);

  _set_zero_flg='0';
  do until(last.key);
    set have(keep=key flag);
    by key;
    if Flag in (1,2,8) then _set_zero_flg='1';
  end;

  do until(last.key);
    set have;
    by key;
    if _set_zero_flg='1' and Flag not in (1,2,8) then Rate=0;
    output;
  end;

run;

/* option 2 */
data want2;
  set have;

  if _n_=1 then
    do;
      dcl hash h1 (dataset:'have(keep=key Flag where=(Flag in (1,2,8)))',multidata:'n');
      h1.defineKey('key');
      h1.defineDone();
    end;

  if h1.check()=0 and Flag not in (1,2,8) then Rate=0;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Oct 2016 23:48:07 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2016-10-12T23:48:07Z</dc:date>
    <item>
      <title>Rate Application to Claims Data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/303805#M64589</link>
      <description>&lt;P&gt;Greetings all.&amp;nbsp; Thank you so much for your previous assistance on this forum.&amp;nbsp; I perused the exisiting messages for this issue and I have a feeling there is an answer; however, I'm must not be using the correct key words.&amp;nbsp; So, I'm going to put this out there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a set of claims data.&amp;nbsp; Line item data.&amp;nbsp; I have created a rate specific to a service line.&amp;nbsp; For example, a radiology procedure&amp;nbsp;will pay a certain dollar amount and I have also created a flag to denote that what I applied to that particular line item.&amp;nbsp; No problem assigning the line item rate.&amp;nbsp; The problem I am running into is when there are other line items that take precendece and would essentially cause this radiology line to not pay (be zero dollars).&amp;nbsp; I have tried a series of first., last., do until, and I just can't seem to get the english into code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data Have:&lt;/P&gt;&lt;P&gt;Key&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Line_No&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Flag&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Rate&lt;/P&gt;&lt;P&gt;3217&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 29&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 102.81&lt;/P&gt;&lt;P&gt;3217&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2&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; 29&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 145.78&lt;/P&gt;&lt;P&gt;3217&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3&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;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2290&lt;/P&gt;&lt;P&gt;3217&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4&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; 23&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6942&lt;/P&gt;&lt;P&gt;3217&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5&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; 8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2418&lt;/P&gt;&lt;P&gt;3218&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 27&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1234&lt;/P&gt;&lt;P&gt;3218&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2&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;28&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 567&lt;/P&gt;&lt;P&gt;3218&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3&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;29&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 890&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data above is what I might consider a first pass through all of the service lines.&amp;nbsp; Now I need to loop&amp;nbsp;through the claims to determine what&amp;nbsp;lines need to receive a zero rate&amp;nbsp;when the a key for any of the lines of a particular claim (3217) is in (1,2,8).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data Want:&lt;/P&gt;&lt;P&gt;Key&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Line_No&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Flag&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Rate&lt;/P&gt;&lt;P&gt;3217&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 29&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;3217&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2&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; 29&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;3217&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3&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;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2290&lt;/P&gt;&lt;P&gt;3217&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4&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; 23&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;3217&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5&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; 8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2418&lt;/P&gt;&lt;P&gt;3218&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 27&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1234&lt;/P&gt;&lt;P&gt;3218&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2&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;28&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 567&lt;/P&gt;&lt;P&gt;3218&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3&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;29&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 890&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Flags of 1,2,8 take precedent over the other lines and are the only lines that will pay.&amp;nbsp;With KEY 3218, you can see there aren't any flags of 1,2,or 8 and the payment is valid.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm sure there is something really obvious here, but I've stared at it so long, I'm not seeing it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any assistance or direction is greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 19:36:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/303805#M64589</guid>
      <dc:creator>shounster</dc:creator>
      <dc:date>2016-10-12T19:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Application to Claims Data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/303816#M64592</link>
      <description>&lt;P&gt;The first thing to do is proper formatting of code. Spaghetti coding always prevents visual detection of semantical errors.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data op_data3b;
do until (last.key);
  set op_data3;
  by key;
  if flag not in (1 2 8)
  then do;
    rad = put(hcpcs,$rad_wt.);
    if rad ne 1
    then do;
      rate=rad * units;
      flag=29;
    end;
    else if flag in (1 2 8)
    then do;
      rate=0;
      flag=29;
    end;
  end;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now you will see that the code for flag &lt;U&gt;in&lt;/U&gt; (1,2,8) is INSIDE the code for flag &lt;U&gt;not in&lt;/U&gt; (1,2,8), so that condition can &lt;U&gt;never&lt;/U&gt; be true.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2016 15:45:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/303816#M64592</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-10-11T15:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Application to Claims Data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/303841#M64598</link>
      <description>&lt;P&gt;Kurt,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your quick response.&amp;nbsp; It probably would have helped if I had taken the time to post this correctly.&amp;nbsp; Copy and paste are not always your friend.&amp;nbsp; lol&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I took a break from this (again) and had a little clarity.&amp;nbsp; I&amp;nbsp;do&amp;nbsp;see that I have the IN statement contained within the NOT statment.&amp;nbsp; Thank you for pointing that out.&amp;nbsp; I realized my "do until (last.key)" was only picking&amp;nbsp;up the last key (as it is supposed to do).&amp;nbsp; I also realized I needed to utilize the line number (which I did not provide to everyone in my DATA HAVE statment).&amp;nbsp; I'm testing this theory at the moment:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;do _n_ = 1 by 1 until (max(ub_line));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if flag not in (1 2 &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; rad = put(hcpcs,$rad_wt.);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if rad ne 1 then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rate=rad * units;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; flag=27;&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; end;&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2016 17:57:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/303841#M64598</guid>
      <dc:creator>shounster</dc:creator>
      <dc:date>2016-10-11T17:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Application to Claims Data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/303952#M64652</link>
      <description>&lt;P&gt;To get proper formatting of SAS code (and "prettying up" with coloring like the enhanced editor does), use the "little running man" icon on top of your post window to get a code editor. The {i} icon also uses a non-proportional font, but omits the coloring.&lt;/P&gt;
&lt;P&gt;Pasting code there from EG always preserves my formatting; only when re-editing the code it is better to copy/paste back to EG, remove the original code segment and re-post the edited code in a new window.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 06:32:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/303952#M64652</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-10-12T06:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Application to Claims Data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/304179#M64724</link>
      <description>&lt;P&gt;Thank you all who have taken a look at my quandary.&amp;nbsp; I would like to get back to the direct issue, which is how to zero out the claim lines that shouldn't get paid if there is already a 'precendent' payment.&amp;nbsp; I'm going to remove my code sample since it really didn't work to begin with.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for taking a look.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 19:35:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/304179#M64724</guid>
      <dc:creator>shounster</dc:creator>
      <dc:date>2016-10-12T19:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Application to Claims Data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/304208#M64736</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below two coding options.&lt;/P&gt;
&lt;P&gt;Option 1 requires your source data to be pre-sorted by key, Option 2 doesn't require any sorting but requires more memory.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  infile datalines truncover;
  input Key Line_No Flag Rate;
datalines;
3217 1 29 102.81
3217 2 29 145.78
3217 3 1 2290
3217 4 23 6942
3217 5 8 2418
3218 1 27 1234
3218 2 28 567
3218 3 29 890
;
run;

/* option 1 */
data want1(drop=_:);

  _set_zero_flg='0';
  do until(last.key);
    set have(keep=key flag);
    by key;
    if Flag in (1,2,8) then _set_zero_flg='1';
  end;

  do until(last.key);
    set have;
    by key;
    if _set_zero_flg='1' and Flag not in (1,2,8) then Rate=0;
    output;
  end;

run;

/* option 2 */
data want2;
  set have;

  if _n_=1 then
    do;
      dcl hash h1 (dataset:'have(keep=key Flag where=(Flag in (1,2,8)))',multidata:'n');
      h1.defineKey('key');
      h1.defineDone();
    end;

  if h1.check()=0 and Flag not in (1,2,8) then Rate=0;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 23:48:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/304208#M64736</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2016-10-12T23:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Application to Claims Data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/304353#M64791</link>
      <description>&lt;P&gt;Thank you very much for taking the time to look at this.&amp;nbsp; I knew there was a straightforward solution, but I couldn't see the forest for the trees.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2016 12:53:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Rate-Application-to-Claims-Data/m-p/304353#M64791</guid>
      <dc:creator>shounster</dc:creator>
      <dc:date>2016-10-13T12:53:57Z</dc:date>
    </item>
  </channel>
</rss>

