BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
aanan1417
Quartz | Level 8

data have;

input num1 num2;

datalines;

1  2

4  3

7  9

11  10

;

run;

 

output 

num1     num2      num3

1              2             2

4              3             4

7              9             9

11            10            11

 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

@aanan1417 wrote:

num3 should have bigger value from num1 or num2


data want;
    set have;
    num3=max(num1,num2);
run;
--
Paige Miller

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

Please explain further what you are doing. What is the logic that takes the input data in data set named HAVE and produces the output?

--
Paige Miller
aanan1417
Quartz | Level 8

num3 should have bigger value from num1 or num2

PaigeMiller
Diamond | Level 26

@aanan1417 wrote:

num3 should have bigger value from num1 or num2


data want;
    set have;
    num3=max(num1,num2);
run;
--
Paige Miller

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