<?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: How do i get only beneficiaries who have specific proc code A3789 billed more than 4 units per m in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658327#M22655</link>
    <description />
    <pubDate>Sun, 14 Jun 2020 03:16:01 GMT</pubDate>
    <dc:creator>Velidi</dc:creator>
    <dc:date>2020-06-14T03:16:01Z</dc:date>
    <item>
      <title>How do i get only beneficiaries who have specific proc code A3789 billed more than 4 units per month</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658314#M22647</link>
      <description>Where&lt;BR /&gt;CPT_4_Procedure_Code in (‘A3789’)&lt;BR /&gt;And Line_item_units &amp;gt;4&lt;BR /&gt;&lt;BR /&gt;I used above code but there are many claim lines for each beneficiary with diff dates.&lt;BR /&gt;I want to convert claim line from date -thru date to month so that i can know how many benes have more than 4 units for month for that code.</description>
      <pubDate>Sun, 14 Jun 2020 02:02:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658314#M22647</guid>
      <dc:creator>Velidi</dc:creator>
      <dc:date>2020-06-14T02:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do i get only beneficiaries who have specific proc code A3789 billed more than 4 units per m</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658316#M22648</link>
      <description>Please post some example data that illustrates your data structure and the expected output. Then we can assist with code. If you cannot provide the real data, please make fake data that's similar. It doesn't have to be the full data set but it should replicate the data structure.</description>
      <pubDate>Sun, 14 Jun 2020 02:10:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658316#M22648</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-14T02:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do i get only beneficiaries who have specific proc code A3789 billed more than 4 units per m</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658320#M22649</link>
      <description>&lt;P&gt;If your WHERE condition is part of a SQL query, it could be as simple as&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;Where&lt;BR /&gt;CPT_4_Procedure_Code in (‘A3789’)&lt;/P&gt;
&lt;P&gt;group by intnx("month", date, 0)&lt;/P&gt;
&lt;P&gt;having sum(Line_item_units) &amp;gt; 4;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Jun 2020 02:16:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658320#M22649</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-06-14T02:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: How do i get only beneficiaries who have specific proc code A3789 billed more than 4 units per m</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658321#M22650</link>
      <description>Would that handle if there were repeated entries as well as crossing of month intervals?</description>
      <pubDate>Sun, 14 Jun 2020 02:27:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658321#M22650</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-14T02:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do i get only beneficiaries who have specific proc code A3789 billed more than 4 units per m</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658322#M22651</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; that code handles the simplest case where the data is clean and the monthly intervals correspond to calendar months.&lt;/P&gt;</description>
      <pubDate>Sun, 14 Jun 2020 02:32:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658322#M22651</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-06-14T02:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do i get only beneficiaries who have specific proc code A3789 billed more than 4 units per m</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658327#M22655</link>
      <description />
      <pubDate>Sun, 14 Jun 2020 03:16:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658327#M22655</guid>
      <dc:creator>Velidi</dc:creator>
      <dc:date>2020-06-14T03:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do i get only beneficiaries who have specific proc code A3789 billed more than 4 units per m</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658328#M22656</link>
      <description>This is sample data set</description>
      <pubDate>Sun, 14 Jun 2020 03:57:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658328#M22656</guid>
      <dc:creator>Velidi</dc:creator>
      <dc:date>2020-06-14T03:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do i get only beneficiaries who have specific proc code A3789 billed more than 4 units per m</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658371#M22665</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/333642"&gt;@Velidi&lt;/a&gt;&amp;nbsp;sorry, no data or attachments came through. You cannot attach anything via email.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ideally, you can provide it as a data step following the instructions here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Jun 2020 16:58:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-i-get-only-beneficiaries-who-have-specific-proc-code/m-p/658371#M22665</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-06-14T16:58:21Z</dc:date>
    </item>
  </channel>
</rss>

