BookmarkSubscribeRSS Feed
Shirin
Obsidian | Level 7

NO it doesn't, I keep getting blanks.

Kurt_Bremser
Super User

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:

ObsIDVar1Var2VarA

1  
2  
3  
1  
2  
1  
2  
3  
4  

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 16 replies
  • 3614 views
  • 0 likes
  • 11 in conversation