BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
nzrdufiu
Obsidian | Level 7

I have datasets as follows:

 

GVKEY DATADATE

0111     19740131

0111     19740231

.    

.   

.  

.

.

0111    20150131

.

I want to  create new variables--year and month from the datadate. What would be the code both in data step and in proc sql?  

Thank you. 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Shmuel
Garnet | Level 18

In case DATADATE is a character variable do:

 

year = input(substr(datadate,1,4),4.);

month = input(substr(datadate,5,2),2.);

 

In case the variable is numeric do:

year = int(datadate/10000);  

   or year = input(substr(put(datadate,8.),1,4),4.);

month = input(substr(put(datadate,8.),5,2),2.);

 

in case datadate is a date variable with predefined format of yymmdd8. then

    year = year(datadate);

   month = month(datadate);

 

View solution in original post

4 REPLIES 4
Shmuel
Garnet | Level 18

In case DATADATE is a character variable do:

 

year = input(substr(datadate,1,4),4.);

month = input(substr(datadate,5,2),2.);

 

In case the variable is numeric do:

year = int(datadate/10000);  

   or year = input(substr(put(datadate,8.),1,4),4.);

month = input(substr(put(datadate,8.),5,2),2.);

 

in case datadate is a date variable with predefined format of yymmdd8. then

    year = year(datadate);

   month = month(datadate);

 

nzrdufiu
Obsidian | Level 7

Yes, it works. Thank you.

nzrdufiu
Obsidian | Level 7

Thank you.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 1795 views
  • 3 likes
  • 3 in conversation