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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.