Hi to all,
Need kind mind about this :
Datahave :
input A @@;
cards;
1441.47 1465.15 1441.36 1360.16 1424.37 1387.12 1346.09 1333.36
Datawant :
input A B;
cards;
1441.47 1441.47
1465.15 1465.15
1441.36 1465.15
1360.16 1465.15
1424.37 1465.15
1387.12 1465.15
1346.09 1465.15
1333.36 1465.15
Where B is computed as : B= max ($A$1: A_n_) that is most greatest value of A since the first line.
Thanks.
B Regards
As long as your data set does not yet contain B:
data want;
set have;
retain b;
if a > b then b = a;
run;
What have you tried so far?
Posting code using the running-man-icon is recommended to preserve formatting and white-space.
You will want to look-up the retain statement.
As long as your data set does not yet contain B:
data want;
set have;
retain b;
if a > b then b = a;
run;
Thanks for that ! It is a possibility !
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 save with the early bird rate—just $795!
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.