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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 3626 views
  • 0 likes
  • 11 in conversation