BookmarkSubscribeRSS Feed
Adnan_Razaq
Calcite | Level 5

Hi,

 

I have

 

account   date   arrears 

1              Jan      0         

1              Feb      1             

1              Mar      0             

1              Apr       2            

2              Jan       0             

2              Feb       1             

2              Mar       2             

           

 

I need

 

account   date   arrears  max_arrears

1              Jan      0              0

1              Feb      1              1

1              Mar      0              1

1              Apr       2              2

2              Jan       0              0

2              Feb       1              1

2              Mar       2              2

           

Any coding suggestions please?

 

Thanks in advance

 

Adnan

4 REPLIES 4
LinusH
Tourmaline | Level 20

Not sure if you request matches your subject...

But, use RETAIN within a data step.

Data never sleeps
Reeza
Super User

There is no max or min that I see, only keeping the previous value. Can you clarify your requirements? 

 

It may be as a simple as:

 

if first.account then max_value =arrears;

else max_value = max(max_value, arrears);

Adnan_Razaq
Calcite | Level 5

Apologies for the confusion.

 

What I require is  the max arrears value by account and date.

 

Thanks

 

Adnan

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Post test data in the form of a datastep.

 

Just a guess:

data want;
  set have;
  retain max_arrears;
  by account;
  if first.account then max_arrears=0;
  if arrears > max_arrears then max_arrears=arrears;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1332 views
  • 0 likes
  • 4 in conversation