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

Hii

 

I have the following data set

 

subid   names

001       ruby

001       ricky

001       subbu

002       kee

002       chai

003       deep

004       suri

 

I need output as

subid    names

001       ruby,ricky,subbu

002       kee,chai

003       deep

004       suri

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Here's a straightforward approach:

 

data want;

set have;

by subid;

length all_names $ 200;

if first.subid then all_names = names;

else all_names = catx(',' , all_names, names);

if last.subid;

retain all_names;

run;

 

The only thing I would warn you about is to consider whether this is really a good step to take.  If you merely want to print the data in this new form then go right ahead.  But if you are analyzing or summarizing the data for some other purpose, SAS has many tools that let you process multiple observations per SUBID.  It may not be necessary to change the form of the data.

View solution in original post

1 REPLY 1
Astounding
PROC Star

Here's a straightforward approach:

 

data want;

set have;

by subid;

length all_names $ 200;

if first.subid then all_names = names;

else all_names = catx(',' , all_names, names);

if last.subid;

retain all_names;

run;

 

The only thing I would warn you about is to consider whether this is really a good step to take.  If you merely want to print the data in this new form then go right ahead.  But if you are analyzing or summarizing the data for some other purpose, SAS has many tools that let you process multiple observations per SUBID.  It may not be necessary to change the form of the data.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 1 reply
  • 1059 views
  • 1 like
  • 2 in conversation