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

Dear All,

I have a data file showed below:

ID  a1  b1  c1

1   23  35  61

2   76  71  10

3   90        60

4        31   50

5   70 42 

6   35 67  89

I want create a new variable 'd1' with highest number from a1, b1, c1.

Thanks for your help.

1 ACCEPTED SOLUTION

Accepted Solutions
stat_sas
Ammonite | Level 13

data have;

input ID  a1  b1  c1;

d1=max(of a1--c1);

datalines;

1   23  35  61

2   76  71  10

3   90  .   60

4    .  31  50

5   70  42  .

6   35  67  89

;

View solution in original post

3 REPLIES 3
LinusH
Tourmaline | Level 20

max()

Data never sleeps
stat_sas
Ammonite | Level 13

data have;

input ID  a1  b1  c1;

d1=max(of a1--c1);

datalines;

1   23  35  61

2   76  71  10

3   90  .   60

4    .  31  50

5   70  42  .

6   35  67  89

;

xinjian
Calcite | Level 5

Hi stat@sas and Linush,

Thanks so much for your quick response. I appreciate your help.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 765 views
  • 0 likes
  • 3 in conversation