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 !
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.