BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
DoumbiaS
Quartz | Level 8

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

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

As long as your data set does not yet contain B:

 

data want;

set have;

retain b;

if a > b then b = a;

run;

View solution in original post

3 REPLIES 3
andreas_lds
Jade | Level 19

What have you tried so far?

Posting code using the running-man-icon is recommended to preserve formatting and white-space.

grafik.png

 

You will want to look-up the retain statement.

Astounding
PROC Star

As long as your data set does not yet contain B:

 

data want;

set have;

retain b;

if a > b then b = a;

run;

DoumbiaS
Quartz | Level 8

Thanks for that ! It is a possibility !

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 634 views
  • 0 likes
  • 3 in conversation