I have date which is numeric format. I want the year from that. I am getting blank value.
my date1 variable is yymmn6. format. For example if I have date1 = 201405, I should get 2014, but I get blank value for year.
Can anybody help me, please?
You can try this.
data have;
dt="201405";
yr=year(input(dt,yymmn6.));
run;
proc print data=have;
run;
input(put(Date,6.),4.)
This is what I do.
Or year = floor(Date/100);
This is what I would do.
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 the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.