Hi all,
I am new to base sas programming.
i am calculating months,years and weeks in a sas data set that have a column of some dates, say "ABC"
and i have calculate "months,years and weeks" from current date.
pls suggest.
data have (drop=i);
format abc date9.;
do i = 1 to 11;
abc = '19feb2014'd + i;
output;
end;
run;
data want; set have;
monthdif = intck('month',abc, date());
weekdif = intck('week',abc, date());
yeardif = intck('year',abc, date());
run;
run;
Hi - Have a look at the INTNX function. It calculates different types of time intervals between two dates.
data have (drop=i);
format abc date9.;
do i = 1 to 11;
abc = '19feb2014'd + i;
output;
end;
run;
data want; set have;
monthdif = intck('month',abc, date());
weekdif = intck('week',abc, date());
yeardif = intck('year',abc, date());
run;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.