The simplest answer is a combination of 2 answers:
data have;
input Subject $ Value1 value2 value3 value4;
datalines;
10001 3 4 5 8
10007 4 6 4 9
10009 4 9 10 3
run;data need;
set have;
value = max(of value1 - value4);
run;
the dataset NEED will look as follows:
10001 3 4 5 8 8
10007 4 6 4 9 9
10009 4 9 10 3 10
Message was edited by: Amin Bardai
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.
Browse our catalog!