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;
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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1863 views
  • 2 likes
  • 3 in conversation