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:
Prod | Comp |
x | 1 |
x | 2 |
x | 3 |
y | 1 |
y | 2 |
Want:
Prod | Comp |
x | x |
x | 1 |
x | 2 |
x | 3 |
y | y |
y | 1 |
y | 2 |
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;
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;
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!
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.
Ready to level-up your skills? Choose your own adventure.