Hi DB_ECON
You can do that very easily by just appending and then sorting them.
Suppose your dataset name is A and you need output in B
Program:-
data B;
set A A;
run;
proc sort data=B;
by ID;
run;
You will get your required result in B dataset.
You can try the following code( as single is your original data set )
data new ;
set single;
do i=1 to 2;
output;
end;
run;
proc print data=new(drop=i) noobs;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.