<?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: Year of a specific age calculation in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Year-of-a-specific-age-calculation/m-p/953114#M42821</link>
    <description>&lt;P&gt;You don't even need to do this in SAS, you can do this in your head.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add 60 to the birth year&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2013+60=2073&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But maybe that gives you an idea about how to do it in SAS&lt;/P&gt;</description>
    <pubDate>Tue, 10 Dec 2024 16:27:55 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2024-12-10T16:27:55Z</dc:date>
    <item>
      <title>Year of a specific age calculation</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Year-of-a-specific-age-calculation/m-p/953113#M42820</link>
      <description>&lt;P&gt;Hi guys,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;suppose an individual is born at 01JUN2013, how is it possible to determine at which year he will become 60?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much!&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2024 16:16:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Year-of-a-specific-age-calculation/m-p/953113#M42820</guid>
      <dc:creator>NewUsrStat</dc:creator>
      <dc:date>2024-12-10T16:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Year of a specific age calculation</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Year-of-a-specific-age-calculation/m-p/953114#M42821</link>
      <description>&lt;P&gt;You don't even need to do this in SAS, you can do this in your head.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add 60 to the birth year&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2013+60=2073&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But maybe that gives you an idea about how to do it in SAS&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2024 16:27:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Year-of-a-specific-age-calculation/m-p/953114#M42821</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-12-10T16:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: Year of a specific age calculation</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Year-of-a-specific-age-calculation/m-p/953115#M42822</link>
      <description>&lt;P&gt;Two ways starting with a SAS date value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data example;
   dob='01JUN2013'd;
   age60 = intnx('year',dob,60,'s');
   yrage60 = year(age60);
   format dob age60 date9.;
run;
/* or */
data example2;
   dob='01JUN2013'd; 
   yrage60 = year(dob)+60;
   format dob date9.;
run;&lt;/PRE&gt;</description>
      <pubDate>Tue, 10 Dec 2024 16:40:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Year-of-a-specific-age-calculation/m-p/953115#M42822</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-12-10T16:40:28Z</dc:date>
    </item>
  </channel>
</rss>

