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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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