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

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 1165 views
  • 0 likes
  • 3 in conversation