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

I'm looking to take the first row of each group in a table and create an additional row that has the value from the first column (prod) in the second column (comp). Basically, this is an unbundling of a product, where a product ID has components attached to it, but the actual product ID itself should also be considered part of the bundle (one of the components) when joining to other tables.

Have:

ProdComp
x1
x2
x3
y1
y2

 

Want:

ProdComp
xx
x1
x2
x3
yy
y1
y2
1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Use BY processing combined with an explicit output statement. You may have to tweak this if you want to maintain the order, and if you want to include character and numeric values in a single column - it will have to be a character variable.

 

data want;
set have;
by prod;

if first.prod then do;
output;
comp=prod;
output;
end;
else output;
run;

View solution in original post

1 REPLY 1
Reeza
Super User

Use BY processing combined with an explicit output statement. You may have to tweak this if you want to maintain the order, and if you want to include character and numeric values in a single column - it will have to be a character variable.

 

data want;
set have;
by prod;

if first.prod then do;
output;
comp=prod;
output;
end;
else output;
run;

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
  • 5505 views
  • 4 likes
  • 2 in conversation