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.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.