BookmarkSubscribeRSS Feed
xchoit
Calcite | Level 5

How do I create a tagging (DelinquentTag) variable based on that 3 variables across time.    

Example:

Data:

Date               Accno     Delinquent       DelinquentTag

30Nov2011     123          0                    N

31Dec2011     123          1                    Y

31Jan2012      123          0                    Y

30Nov2011     234          0                    N

31Dec2011     234          0                    N

30Nov2011     235          1                    Y

31Dec2011     235          1                    Y

Regards,

xchoit

2 REPLIES 2
LinusH
Tourmaline | Level 20

Do you want to mark all roes (for each accno) as "Y" from the record where delinquent is = 1, and thereafter?

You could archive this by using first.-logic together with the retain statement.

Data never sleeps
data_null__
Jade | Level 19

Once the acc becomes delinquent stop checking and "retain" true.

data acc;
   input Date:date. Accno:$3. Delinquent;
   format date date9.;
  
cards;
30Nov2011     123          0              
31Dec2011     123          1              
31Jan2012      123          0             
30Nov2011     234          0              
31Dec2011     234          0              
30Nov2011     235          1              
31Dec2011     235          1              
;;;;
   run;
data deliq;
   flag = 0;
  
do until(last.accno);
      set acc;
      by accno;
      if not flag then flag = ifn(Delinquent,1,0);
      output;
     
end;
  
run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 1181 views
  • 0 likes
  • 3 in conversation