BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SAS_inquisitive
Lapis Lazuli | Level 10

How to get the last 4 digits of SSN from this data?

data SSN;
  input SSN $;
  cards;
  123456789
  12345678
  1234567
  ;
run;
1 ACCEPTED SOLUTION

Accepted Solutions
FreelanceReinh
Jade | Level 19

With your data step you lose already the "9" in the first row.

data SSN;
input SSN :$9.; /* The default length 8 is insufficient! */
cards;
123456789
12345678
1234567
;
run;

data want;
set ssn;
length last4d $4;
last4d=substr(ssn,length(ssn)-3);
run;

View solution in original post

2 REPLIES 2
data_null__
Jade | Level 19

 

 

last4 = substrn(ssn,lengthn(ssn)-4+1);
FreelanceReinh
Jade | Level 19

With your data step you lose already the "9" in the first row.

data SSN;
input SSN :$9.; /* The default length 8 is insufficient! */
cards;
123456789
12345678
1234567
;
run;

data want;
set ssn;
length last4d $4;
last4d=substr(ssn,length(ssn)-3);
run;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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
  • 2 replies
  • 1141 views
  • 2 likes
  • 3 in conversation