BookmarkSubscribeRSS Feed
pp2014
Fluorite | Level 6

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?

3 REPLIES 3
stat_sas
Ammonite | Level 13

You can try this.

data have;

dt="201405";

yr=year(input(dt,yymmn6.));

run;

proc print data=have;

run;

jenrscott827
Calcite | Level 5

input(put(Date,6.),4.)

This is what I do. 

PGStats
Opal | Level 21

Or year = floor(Date/100);

This is what I would do.

PG

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1438 views
  • 0 likes
  • 4 in conversation