BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Dear all,

How can I duplicate the records?

For example:

DATA TEST;
INFILE CARDS MISSOVER;
INPUT @1 ID4. @8 Factor 2. @13INVENCST COMMA10.2;
CARDS;
0001 2 45,000.00
0002 5 28,000.00
;
RUN;

If the first record of factor is 2. How can I duplicate the record by 2 times?

Finally, I want the results as following:

0001 20 45,000.00
0001 20 45,000.00
0001 10 28,000.00
0002 10 28,000.00
0002 10 28,000.00
0002 10 28,000.00
0002 10 28,000.00


Thanks all

Message was edited by: loverstar Message was edited by: loverstar
1 REPLY 1
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
You have the SAS OUTPUT statement which can be used in a DATA step for this purpose, as required. Without explicit coding of the OUTPUT in your example, only one SAS observation is generated. You can define a code paragraph using the construct below (coded within a DATA step):

DO I=1 TO ;
OUTPUT;
END;



Scott Barry
SBBWorks, Inc.

Recommended Google advanced search argument, this topic/post:

data step programming site:sas.com

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 829 views
  • 0 likes
  • 2 in conversation