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;
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;
The 2025 SAS Hackathon Kicks Off on June 11!
Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.