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

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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