Is there any way to create duplicates of an observation in a dataset? I have dataset with EmpID and Entries column. Based on Entries column I would like to
create duplicate observation.
Example: If EmpID – 1000 has Entries = 5 then I would like the output as:
EmpID | Entries |
---|---|
10000 | 5 |
10000 | 5 |
10000 | 5 |
10000 | 5 |
10000 | 5 |
Thanks
Simple :
data myDataSet;
set myDataSet;
do _n_ = 1 to Entries;
output;
end;
run;
PG
Simple :
data myDataSet;
set myDataSet;
do _n_ = 1 to Entries;
output;
end;
run;
PG
Thanks for the quick reply.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.