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

The data I have (in one field):

Name 

Doe,  John  M. 

The data I want (in 3 fields):

Last     First     Mi

Doe     John     M

1 ACCEPTED SOLUTION

Accepted Solutions
CTorres
Quartz | Level 8

Very simplistic but works if there are no composed names, prefixes, more than one initial, etc...:

data have;

  name='Doe, John M';

  last=scan(name,1);

  first=scan(name,2);

  Mi=scan(name,3);

run;

CTorres

View solution in original post

4 REPLIES 4
CTorres
Quartz | Level 8

Very simplistic but works if there are no composed names, prefixes, more than one initial, etc...:

data have;

  name='Doe, John M';

  last=scan(name,1);

  first=scan(name,2);

  Mi=scan(name,3);

run;

CTorres

GreggB
Pyrite | Level 9

Simplistic works for me!  Thanks.

ballardw
Super User

Beware of two word last names such as Le Blank, Van Dorp and such.

You might want to run a word count to see if you have more than 3 words in the field to bring possible problems to your attention.

dcruik
Lapis Lazuli | Level 10

I'm not sure how dynamic you need the code to be, whether your Name field is consistent or not with the length of the Middle Initial and whether there are more than two names for the first name, but this code will help with your example you gave.

data have;

input name $25.;

datalines;

Doe, John M.

;

run;

data want;

set have;

format Last First $15. FirstMi $20. Mi $1;

Last=scan(Name,1,",");

FirstMi=scan(Name,2,",");

First=strip(scan(FirstMi,1," "));

Mi=compress(scan(FirstMi,2," "),".");

drop FirstMi;

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
  • 4 replies
  • 1689 views
  • 0 likes
  • 4 in conversation