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

Hi there, this is my first post. I apologise if this has previously been answered elsewhere but I could not find it.

 

I am looking to create a 'default-ever' flag that will be positive if an account has ever defaulted. Below is a dataset with an example of the variable I'm looking to create:

Please note that I'm looking for this 'default-ever' flag to be account specific.

 

Thanks in advance for your help 😀

 

AccountDateDefaultDefault_Ever (what I want to make)

1

201501
1201601
1201701
1201811
2201400
2201500
3201601
3201701
3201811
3201911

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Add the max value of default per group in to the records.

 

proc sql;
create table want as
select *, max(default) as default_ever
from have
group by Account
order by 1, 2;
quit;

Other approaches:

  • Sort by Account and descending default and use RETAIN
  • Calculate maximum via data step and merge it in
  • DoW loop to merge in maximum as well

@mpn wrote:

Hi there, this is my first post. I apologise if this has previously been answered elsewhere but I could not find it.

 

I am looking to create a 'default-ever' flag that will be positive if an account has ever defaulted. Below is a dataset with an example of the variable I'm looking to create:

Please note that I'm looking for this 'default-ever' flag to be account specific.

 

Thanks in advance for your help 😀

 

Account Date Default Default_Ever (what I want to make)

1

2015 0 1
1 2016 0 1
1 2017 0 1
1 2018 1 1
2 2014 0 0
2 2015 0 0
3 2016 0 1
3 2017 0 1
3 2018 1 1
3 2019 1 1

 


 

View solution in original post

3 REPLIES 3
Reeza
Super User

Add the max value of default per group in to the records.

 

proc sql;
create table want as
select *, max(default) as default_ever
from have
group by Account
order by 1, 2;
quit;

Other approaches:

  • Sort by Account and descending default and use RETAIN
  • Calculate maximum via data step and merge it in
  • DoW loop to merge in maximum as well

@mpn wrote:

Hi there, this is my first post. I apologise if this has previously been answered elsewhere but I could not find it.

 

I am looking to create a 'default-ever' flag that will be positive if an account has ever defaulted. Below is a dataset with an example of the variable I'm looking to create:

Please note that I'm looking for this 'default-ever' flag to be account specific.

 

Thanks in advance for your help 😀

 

Account Date Default Default_Ever (what I want to make)

1

2015 0 1
1 2016 0 1
1 2017 0 1
1 2018 1 1
2 2014 0 0
2 2015 0 0
3 2016 0 1
3 2017 0 1
3 2018 1 1
3 2019 1 1

 


 

mpn
Calcite | Level 5 mpn
Calcite | Level 5

This worked perfectly, thank you.

PeterClemmensen
Tourmaline | Level 20
data have;
input Account Date Default;
datalines;
1 2015 0 
1 2016 0 
1 2017 0 
1 2018 1 
2 2014 0 
2 2015 0 
3 2016 0 
3 2017 0 
3 2018 1 
3 2019 1 
;

data want;
   do until (last.Account);
      set have;
      by Account;
      Default_Ever = max(Default_Ever, Default);
   end;
   
   do until (last.Account);
      set have;
      by Account;
      output;
   end;
run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 808 views
  • 2 likes
  • 3 in conversation