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

eg : I have  5 names under the column "User" in a dataset, how do I get the result as  AB;BC;CD;DE;EF where AB,BC,CD,DE,EF are the values under the column "User" .

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

Like this:

data have;
input user :$2.;
datalines;
AB
BC
CD
DE
EF
;

data want(keep=userList);
length userList $24;
do until(eof);
     set have end=eof;
     userList = catx(";", userList, user);
     end;
run;

proc print data=want noobs; run;

PG

PG

View solution in original post

2 REPLIES 2
PGStats
Opal | Level 21

Like this:

data have;
input user :$2.;
datalines;
AB
BC
CD
DE
EF
;

data want(keep=userList);
length userList $24;
do until(eof);
     set have end=eof;
     userList = catx(";", userList, user);
     end;
run;

proc print data=want noobs; run;

PG

PG
mgrd
Calcite | Level 5

I'd like to know, how it's possible to concatenate one column and mantain the information in each row. For example:

A B

a 1

a 2

a 3

b 4

b 5

b 6

c 7

d 8

e 9

e 10

f 11

 

Create 3 columns like this:

A    B     Concatenate

a    1     1,2,3

a    2     1,2,3

a    3     1,2,3

b    4     4,5,6

b    5     4,5,6

b    6     4,5,6

 

 

Thanks in advance for your help!!

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
  • 2 replies
  • 10069 views
  • 1 like
  • 3 in conversation