BookmarkSubscribeRSS Feed
SAS83
Fluorite | Level 6
how to strip out year from this field.

It is in datetime format.

19JAN2006:17:14:33.072000

Thanks in advance..
3 REPLIES 3
yaswoman
Calcite | Level 5
You can use the DATEPART function.
YEAR=DATEPART(yourdate);

I think that is the right syntax.
SPR
Quartz | Level 8 SPR
Quartz | Level 8
Hello SAS83,

This is a possible solution:
[pre]
data i;
dt="19JAN2006:17:14:33.072000"dt;
year=YEAR(DATEPART(dt));
format dt datetime.;
run;
[/pre]
Sincerely,
SPR
SAS83
Fluorite | Level 6
Thank you !!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1366 views
  • 0 likes
  • 3 in conversation