Hi,
I would like add one obervation to multiple obsevations like below ;
data visit ;
visits $100;
cards;
visit1
visit2
visit3;
run;
data sujects;
subjects $200;
cards;
001
002
004
005
006
007
008
009
010;
run;
woud like to add for each subject 3 visit records from vistis data.
so totla 30 obs in subjects data set with visit information.
Thnk you,
Raja.
SQL is best for many to many matches:
proc sql;
create table want as select * from visit, subjects;
quit;
SQL is best for many to many matches:
proc sql;
create table want as select * from visit, subjects;
quit;
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 save with the early bird rate—just $795!
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.