how to calulate age in SAS of particluar person the data is in excel
which is something like this
name bob
singh 1-jan-1980
anitha 6-mar-1991
Hi, using the attached XLS file ...
libname x 'z:\text.xls';
data want;set x.'sheet1$'n;age = yrdif(bob,today(),'age');run;
libname x clear;
DATA SET: want
name bob age
singh 01JAN1980 37.4986anitha 06MAR1991 26.3233
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.
Browse our catalog!