BookmarkSubscribeRSS Feed
Sean_OConnor
Obsidian | Level 7

Folks,

 

I have two variables on income, and I would like to choose whatever the biggest value is to put in a third one. However, in certain cases they will be the same so I need to let SAS know that in this case it can choose either.

 

Example

 

data have ;

  input id $ Var1 Var2 Var3  ;

cards;

a1 15000 20000 20000

a2 30000 5000 30000

a3 10000 10000 1000

run;

Any help would be welcome 

2 REPLIES 2
novinosrin
Tourmaline | Level 20

data have ;

  input id $ Var1 Var2   ;

cards;
a1 15000 20000 20000
a2 30000 5000 30000
a3 10000 10000 1000
;
run;

data want;
set have;
var3=largest(1,var1,var2);
run;

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2 replies
  • 940 views
  • 0 likes
  • 3 in conversation