data scoredata1;
set scoredata0;
year_diff1 = YRDIF(start_date,today(),'30/360');
year_diff2 = YRDIF(start_date,'14sep2015'd,'ACT/ACT');
year_diff3 = YRDIF(start_date,today(),'ACT/360');
year_diff4 = YRDIF(start_date,'14sep2015'd,'ACT/365');
day_diff1 = datDIF(start_date,today(),'30/360');
day_diff2 = datDIF(start_date,'14sep2015'd,'ACT/ACT');
run;
when I run the codes above, I got different values due to different bases. How can I sue these values? or what are the significance of these differences?
Besides, why should we put 'd' after the date in date9 format?