BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jiasyuen
Calcite | Level 5
data base1;
set lib.base1;

run;

proc summary data=base1 nway missing;
class prd;
var gp;

run;

My prd is a set of date. I am required to extract the first 4 digits of it. For example, 202012, and I only need 2020. 

Is there any way to extract it? Thank you.

1 ACCEPTED SOLUTION

Accepted Solutions
Patrick
Opal | Level 21

 

data base1;
set lib.base1;
prd2=substrn(prd,1,4);
run;

View solution in original post

3 REPLIES 3
andreas_lds
Jade | Level 19

Depends on the type of prd:

  • if it is a string, use substr-function
  • if it is numeric, convert in to string and use substr
  • if you have a real date, use year-function to extract the year.
jiasyuen
Calcite | Level 5

Let say it's a string. How would I convert? Can you show me the line of code? Thank you.

Patrick
Opal | Level 21

 

data base1;
set lib.base1;
prd2=substrn(prd,1,4);
run;

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 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 512 views
  • 0 likes
  • 3 in conversation