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.
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
;
max()
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
;
Hi stat@sas and Linush,
Thanks so much for your quick response. I appreciate your help.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.