BookmarkSubscribeRSS Feed
asar_k
Calcite | Level 5

Hello Friends,

I am trying to get my mind around this issue, and I need your advice regarding it.

I have a variable "Date" in my sas dataset in the format "01DEC05".

I want to extract the month "DEC", and the year "05" using the DATA step.

So far I tried using the SUBSTR(Right 😃 function; it does work for the char variable but it does not work for the numeric variable.

Here's my code:

data work.stocks;

set sashelp.stocks;

Inital=substr(Stock,1,1);

Month=SUBSTR(Date,3,3);

Year=SUBSTR(Date,6,2);

put @1 Month @5 Year;

run;

This being my first post here, my apologies if the code tags are not inserted properly.

Best Regards

asar_k

Ref:SAS(R) 9.2 Language Reference: Dictionary, Fourth Edition

1 REPLY 1
Ksharp
Super User

data _null_;

d='01mar2015'd;

m=put(d,monname3.);

y=put(d,year4.);

put m= y=;

run;

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
  • 1 reply
  • 2986 views
  • 0 likes
  • 2 in conversation