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
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Register Now
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!