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

I am new SAS user and trying to create an additional Month_No variable by using Report_Month (Character Variable) . I have 3 differnt SAS data sets with common variables (Loan, Report_Month & Chargeoff$). When I apend datasets in SAS and do pivot table of SAS output, I get the look below which is correct using the Report_Month variable (Charge off for each loan show up in the month they occure).

 

 Report_Month    
 2016/012016/022016/032016/042016/05
Loan 1200400600300200
Loan 2 500200300400
Loan 3  600100250

 

What I want to do is  assign new variable (Month_No) 1 to the first charge off Report_Month and Month_No 2 to 2nd charge off Report_Month and so on get the following look below.

 

 Month_no    
 12345
 2016/012016/022016/032016/042016/05
Loan 1200400600300200
 2016/022016/032016/042016/05 
Loan 2500200300400 
 2016/032016/042016/05  
Loan 3600100250  

 

With my little knowledge, I have tried the Retain and Accumulating statements but none is working for me. Any help will be greatly appreciated.

 

Jamal

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
TomKari
Onyx | Level 15

What you're trying to do is a little tricky for a beginner.

 

First, I strongly recommend you convert any dates that you use into SAS date variables, which are numeric. That's what the input function does, creating a date of the first of the month.

 

Once you have dates, you can use intck to get pretty much any kind of interval you want.

 

data want;

set have;

retain Beginning_Date;

Report_Month_Num = input(strip(Report_Month)||"/01", yymmdd10.);

format Report_Month_Num date9.;

if _n_ = 1 then Beginning_Date = Report_Month_Num;

Month_No = intck('Month', Beginning_Date, Report_Month_Num) + 1;

drop Beginning_Date;

run;

View solution in original post

2 REPLIES 2
TomKari
Onyx | Level 15

What you're trying to do is a little tricky for a beginner.

 

First, I strongly recommend you convert any dates that you use into SAS date variables, which are numeric. That's what the input function does, creating a date of the first of the month.

 

Once you have dates, you can use intck to get pretty much any kind of interval you want.

 

data want;

set have;

retain Beginning_Date;

Report_Month_Num = input(strip(Report_Month)||"/01", yymmdd10.);

format Report_Month_Num date9.;

if _n_ = 1 then Beginning_Date = Report_Month_Num;

Month_No = intck('Month', Beginning_Date, Report_Month_Num) + 1;

drop Beginning_Date;

run;

Jamal1
Calcite | Level 5
Thanks TomKari, This worked for me,

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 1023 views
  • 0 likes
  • 2 in conversation