<?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: Calculating Age But Not Rounding Up in SAS Health and Life Sciences</title>
    <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100369#M1783</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is a age calculation we recieved from SAS years ago and I think it will do what you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Age Calculation Macro from SAS;&lt;/P&gt;&lt;P&gt;%macro CalcAge(agevar,bday,as_of);&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;amp;AgeVar=int(intck('month',&amp;amp;bday,&amp;amp;as_of)/12);&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;&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;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if month(&amp;amp;bday)=month(&amp;amp;as_of) then&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;amp;AgeVar=&amp;amp;AgeVar-(day(&amp;amp;bday)&amp;gt;day(&amp;amp;as_of));&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;%mend CalcAge; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Dec 2012 18:04:22 GMT</pubDate>
    <dc:creator>esjackso</dc:creator>
    <dc:date>2012-12-14T18:04:22Z</dc:date>
    <item>
      <title>Calculating Age But Not Rounding Up</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100367#M1781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using Base SAS 9.3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a database of patient data including birthdate and admit date to hospital.&amp;nbsp; The database does not have age so I need to derive it from these two fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently I have:&lt;/P&gt;&lt;P&gt;age_days=intck("days",bdate,admdate);&lt;/P&gt;&lt;P&gt;age_years=floor(age_days/365);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But there are still cases showing up incorrectly.&amp;nbsp; For instance a patient with a birthdate of February 2, 1929 and and admit date of January 19, 2011.&amp;nbsp; The calculation shows as 82 but in fact the patient is just shy of their 82nd birthday so I need it to calculate as 81.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&amp;nbsp; Thanks very much. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 17:56:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100367#M1781</guid>
      <dc:creator>shellp55</dc:creator>
      <dc:date>2012-12-14T17:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Age But Not Rounding Up</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100368#M1782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the YRDIF function :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;age=yrdif(bdate, admdate, 'AGE');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 18:02:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100368#M1782</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-12-14T18:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Age But Not Rounding Up</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100369#M1783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is a age calculation we recieved from SAS years ago and I think it will do what you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Age Calculation Macro from SAS;&lt;/P&gt;&lt;P&gt;%macro CalcAge(agevar,bday,as_of);&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;amp;AgeVar=int(intck('month',&amp;amp;bday,&amp;amp;as_of)/12);&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;&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;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if month(&amp;amp;bday)=month(&amp;amp;as_of) then&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;amp;AgeVar=&amp;amp;AgeVar-(day(&amp;amp;bday)&amp;gt;day(&amp;amp;as_of));&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;%mend CalcAge; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 18:04:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100369#M1783</guid>
      <dc:creator>esjackso</dc:creator>
      <dc:date>2012-12-14T18:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Age But Not Rounding Up</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100370#M1784</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;This is an amazing group:&amp;nbsp; 2 responses in minutes!&amp;nbsp; Thank you so much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've searched on this query before but after posting I did so again and found a blurb by William Kreuter from the Univ of Washington.&amp;nbsp; Eric, I think what you provided is something similar to what he has though I didn't put in a macro:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; font-family: 'Courier New'; font-size: 10pt;"&gt;age_years=floor((intck('month',bdate,admdate)-(day(admdate)&amp;lt;day(bdate))/12);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However I found with this result that it was incorrectly counting when the patient was admitted on their birthday i.e. rounding up for that case. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG, your result worked though I just had to round it to zero to get what I needed.&amp;nbsp; Thank you both again for such speedy and helpful results!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 18:25:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100370#M1784</guid>
      <dc:creator>shellp55</dc:creator>
      <dc:date>2012-12-14T18:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Age But Not Rounding Up</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100371#M1785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that Billy's macro does better than yrdif.&amp;nbsp; See&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/publishing/authors/extras/61860_update.pdf" title="http://support.sas.com/publishing/authors/extras/61860_update.pdf"&gt;http://support.sas.com/publishing/authors/extras/61860_update.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure what you mean by "rounding up for that case."&amp;nbsp; On my birthday, I am one year older than I was a day before my birthday.&amp;nbsp; CMS also determines eligibility as being on the 65th birthday (not the day after).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doc Muhlbaier&lt;/P&gt;&lt;P&gt;Duke&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 19:13:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100371#M1785</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2012-12-14T19:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Age But Not Rounding Up</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100372#M1786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That paper does not cover "AGE" as the third parameter. In fact, "AGE" was added to fix the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 19:24:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100372#M1786</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-12-14T19:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Age But Not Rounding Up</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100373#M1787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YRDIF with AGE does not get the same value as conventional calculations.Try it for these examples.&amp;nbsp; It counts 29FEB birthdays on 28FEB instead of on 01MAR in non leap years.&amp;nbsp; It seems to grant New Year's babies a birthday on New Year's Eve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that you can test if the event date is before the month and day of birth by comparing the strings produced by the MMDDYY4. format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data age;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; input (dob event ) (:date.) expected ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; format dob event mmddyy10.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; age1 = int(yrdif(dob,event,'age'));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; age2 = intck('year',dob,event) - (put(dob,mmddyy4.) &amp;gt; put(event,mmddyy4.)) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; put (_all_) (=);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;cards;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;29FEB1960 27FEB1965 4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;29FEB1960 28FEB1965 4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;29FEB1960 01MAR1965 5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;29MAR1960 28JAN1965 4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;29MAR1960 29MAR1965 5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;29MAR1960 30MAR1965 5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;01JAN1960 31DEC1963 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;01JAN1960 01JAN1964 4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;01JAN1960 02JAN1964 4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;dob=02/29/1960 event=02/27/1965 expected=4 age1=4 age2=4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;dob=02/29/1960 event=02/28/1965 expected=4 &lt;STRONG&gt;age1=5&lt;/STRONG&gt; age2=4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;dob=02/29/1960 event=03/01/1965 expected=5 age1=5 age2=5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;dob=03/29/1960 event=01/28/1965 expected=4 age1=4 age2=4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;dob=03/29/1960 event=03/29/1965 expected=5 age1=5 age2=5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;dob=03/29/1960 event=03/30/1965 expected=5 age1=5 age2=5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;dob=01/01/1960 event=12/31/1963 expected=3 &lt;STRONG&gt;age1=4&lt;/STRONG&gt; age2=3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;dob=01/01/1960 event=01/01/1964 expected=4 age1=4 age2=4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;dob=01/01/1960 event=01/02/1964 expected=4 age1=4 age2=4&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 21:43:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100373#M1787</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-12-14T21:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Age But Not Rounding Up</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100374#M1788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I must bow to this demonstration and vow never to use this function again! Thanks Tom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 22:29:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Calculating-Age-But-Not-Rounding-Up/m-p/100374#M1788</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-12-14T22:29:09Z</dc:date>
    </item>
  </channel>
</rss>

