BookmarkSubscribeRSS Feed
vThanu
Calcite | Level 5

I have only 1 record in my dataset and I want to copy that record and get the same in the second record.

for example

data have;

x="Micro soft"

run;

 

expected output

     

       x

Micro soft

Micro Soft 

 

 

Thanks in advance

5 REPLIES 5
Astounding
PROC Star
Try:

data want;
Set have;
output;
output;
run;
PeterClemmensen
Tourmaline | Level 20

I'm not sure if this meets your actual needs, but you can control how many times an observation is written to your data set with the Output Statement like this.

 

data have;
x="Micro soft";
output;
output;
run;

proc print data=have;
run;
vThanu
Calcite | Level 5
apart from this do we have any other options....
like do look
do i = 1 to 2 (what ever the no we want)...
PeterClemmensen
Tourmaline | Level 20

Yes, this gives you the same

 

data have;
x="Micro soft";
do i=1 to 2;
   output;
end;
run;

proc print data=have;
run;
vThanu
Calcite | Level 5
Thank you.. 🙂

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1031 views
  • 0 likes
  • 3 in conversation