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.. 🙂

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1143 views
  • 0 likes
  • 3 in conversation