Method 1: Age=FLOOR((INTCK('month',dob,eventdate)-(day(eventdate)<day(dob)))/12)
Method 2: Age= INTCK('year',dob,eventdate,"Continuous")
Hi I was wondering if two methods above have the same function on calculating Age based on DOB.
Thanks a lot
YRDIF actually accepts "AGE" as third argument and returns an age with a fractional part. So
floor(YRDIF(birthDate, today(),"AGE"))
is another way to get the current age in years.
No, the results will differ sometimes.
Method 2 will give you the exact age.
Method 1 will sometimes give you the wrong result when eventdate occurs in the same month as dob.
Hi PG,
I tried one example, somehow, two methods gave me the same result (see age and age2).
%macro age(date,birth);
floor ((intck('month',&birth,&date) - (day(&date) < day(&birth))) / 12)
%mend age;
data c;
WeddingDay='19may2000'd;
Today='18MAY2016'd;
age=%age(Today,WeddingDay);
age1=intck('year',WeddingDay,Today,"D");
age2=intck('year',WeddingDay,Today,"C");
run;
May also want to investigate YRDIF with the 'ACT/ACT' option.
YRDIF actually accepts "AGE" as third argument and returns an age with a fractional part. So
floor(YRDIF(birthDate, today(),"AGE"))
is another way to get the current age in years.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.