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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.