NO it doesn't, I keep getting blanks.
data table1;
input ID Var1 Var2;
cards;
1 1 1
1 2 2
1 3 3
2 1 1
2 2 2
3 1 1
3 2 2
3 3 3
3 4 4
;
run;
data table2;
input ID VarA $;
cards;
1 x
2 u
3 h
;
run;
data table3;
merge table1 table2;
by ID;
run;
proc print;run;
gets this output:
| Obs | ID | Var1 | Var2 | VarA |
| 1 | 1 | 1 | 1 | x |
| 2 | 1 | 2 | 2 | x |
| 3 | 1 | 3 | 3 | x |
| 4 | 2 | 1 | 1 | u |
| 5 | 2 | 2 | 2 | u |
| 6 | 3 | 1 | 1 | h |
| 7 | 3 | 2 | 2 | h |
| 8 | 3 | 3 | 3 | h |
| 9 | 3 | 4 | 4 | h |
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!
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.