<?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 Child Health Check-ups, CMS-416, EPSDT in SAS Health and Life Sciences</title>
    <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Child-Health-Check-ups-CMS-416-EPSDT/m-p/179698#M1953</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;I am wondering if there is anyone out there that has or knows of a SAS algorithm already created to generate counts for lines and age bands for Child Health Check-ups (CHCUP) or EPSDT or CMS-416.&lt;/P&gt;&lt;P&gt;Any direction would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;WHP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Nov 2014 15:48:21 GMT</pubDate>
    <dc:creator>WHPPHD</dc:creator>
    <dc:date>2014-11-20T15:48:21Z</dc:date>
    <item>
      <title>Child Health Check-ups, CMS-416, EPSDT</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Child-Health-Check-ups-CMS-416-EPSDT/m-p/179698#M1953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;I am wondering if there is anyone out there that has or knows of a SAS algorithm already created to generate counts for lines and age bands for Child Health Check-ups (CHCUP) or EPSDT or CMS-416.&lt;/P&gt;&lt;P&gt;Any direction would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;WHP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2014 15:48:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Child-Health-Check-ups-CMS-416-EPSDT/m-p/179698#M1953</guid>
      <dc:creator>WHPPHD</dc:creator>
      <dc:date>2014-11-20T15:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Child Health Check-ups, CMS-416, EPSDT</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Child-Health-Check-ups-CMS-416-EPSDT/m-p/179699#M1954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not quite sure what you may mean by "lines" but for age groups one of the most flexible approaches is the creation of a custom format and Proc Freq.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assume that age is in years&lt;/P&gt;&lt;P&gt;proc format ;&lt;/P&gt;&lt;P&gt;value agegroup&lt;/P&gt;&lt;P&gt;0 - 3 = "0 to 3"&lt;/P&gt;&lt;P&gt;4 - 6 = "4 to 6"&lt;/P&gt;&lt;P&gt;7 - 12 = "7 to 12"&lt;/P&gt;&lt;P&gt;13 - high = "13+"&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc freq data=have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tables age ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format age agegroup. ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you only want counts then modify the tables statement with / nopercent nocum if single variable or&lt;/P&gt;&lt;P&gt;/ norow nocol nopercent if crossing age with another variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2014 16:28:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Child-Health-Check-ups-CMS-416-EPSDT/m-p/179699#M1954</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-11-20T16:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Child Health Check-ups, CMS-416, EPSDT</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Child-Health-Check-ups-CMS-416-EPSDT/m-p/179700#M1955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ballard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I am good with the basic concept format &amp;amp; proc freq for age groups.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The form itself is quite extensive and requires if then else, do loops, and I imagine macros in some healthcare companies logic in order to pull and populate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would rather not reinvent the wheel from scratch if a version or two that I could cut and paste from specific for my medicaid population are available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is really does anyone have the complete algorithm for this form, less their specific proprietary terms (blinded) etc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHP &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 13:39:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Child-Health-Check-ups-CMS-416-EPSDT/m-p/179700#M1955</guid>
      <dc:creator>WHPPHD</dc:creator>
      <dc:date>2014-11-21T13:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Child Health Check-ups, CMS-416, EPSDT</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Child-Health-Check-ups-CMS-416-EPSDT/m-p/179701#M1956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the misunderstanding.&lt;/P&gt;&lt;P&gt;I suspect finding a cut-and-paste may be difficult due to variable naming and different data sources structures.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 15:34:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Child-Health-Check-ups-CMS-416-EPSDT/m-p/179701#M1956</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-11-21T15:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Child Health Check-ups, CMS-416, EPSDT</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Child-Health-Check-ups-CMS-416-EPSDT/m-p/179702#M1957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No misunderstanding my friend, appreciate your input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes of course, cut and paste would have many complications as you mention.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally you can use a find and replace with some efficiency from time to time, but will still be tedious.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 15:43:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Child-Health-Check-ups-CMS-416-EPSDT/m-p/179702#M1957</guid>
      <dc:creator>WHPPHD</dc:creator>
      <dc:date>2014-11-21T15:43:37Z</dc:date>
    </item>
  </channel>
</rss>

