Dear All,
Am having the date of Births as Input and i would like to write using DATE Functions, the no.of days between Birth Date and Today's Date in output dataset ?
11/12/87
12/04/56
03/06/79
04/05/94
03/07/99
03/07/99
Kindly help me.
Regards,
S Ravuri.
Officially, Intck().But in your case, '-' will be sufficient.
data have;
input bday mmddyy8.;
format bday mmddyy8.;
cards;
11/12/87
12/04/56
03/06/79
04/05/94
03/07/99
03/07/99
;
data want;
set have;
ageindays=intck('day',bday,today());
ageindays_=date()-bday;
run;
proc print;run;
I choose to use month/day/year to inteprete your data, although it can be intepreted in other ways as well.
Regards,
Haikuo
data have;
input bday mmddyy8.;
format bday mmddyy8.;
cards;
11/12/87
12/04/56
03/06/79
04/05/94
03/07/99
03/07/99
;
run;
data want;
set have;
age_days = today() - bday;
run;
proc print; run;
Output:
Obs bday age_days
1 11/12/87 8890
2 12/04/56 20190
3 03/06/79 12063
4 04/05/94 6554
5 03/07/99 4757
6 03/07/99 4757
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and 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.