Hi community,
I'm looking a decimal value for the month column. For Year value i got the exact one. I have a trouble with the dd_m (month) column.
While using INTCK func i got a month value but without a decimal.
Please suggest me to solve it.
data eee;
input dateonset mmddyy10.;
cards;
02/19/2004
01/20/2003
05/10/2003
05/21/2003
12/24/2002
05/20/2003
;
data dur1;
set eee;
tday = today();
dur_d = tday - dateonset;
dd_m = intck('month',dateonset,tday);
/**dd_m = dur_d / 12;****(Wrong value)***/
dd_y = dur_d / 365.25;
format dd_y 4.1 dd_m 4.1 tday dateonset mmddyy10.;
run;
proc print;
run;
As you state that year value is correct:
dd_m2 = (dur_d / 365.25)*12;
dd_m=yrdif(start,end,'act/act')*12;
Since months vary from 28 to 31 days the decimal portion is highly suspect in interpretation.
If you really need finer increments I would suggest days.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.