BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
lillymaginta
Lapis Lazuli | Level 10

I am trying to summarize observations that occur in the month prior to specific date and create another summary to observations that occurred two months before the same date and so on.  

id proc_date  proc_type   hosp_date 
1     11/13/2005   a              12/1/2005
1      10/13/2005  a              12/1/2005 
2       2/3/2004     b               3/1/2004
2       1/14/2004   c                3/1/2004

 each id has one hosp_day but multiple proc_date. 

The output I am looking is 

during 1 months pre hosp_date would include;

id proc_date  proc_type   hosp_date 
1     11/13/2005   a              12/1/2005
2       2/3/2004     b               3/1/2004

during the 2 months pre hosp_dae would include: 

id proc_date  proc_type   hosp_date 
1      10/13/2005  a              12/1/2005 
2       1/14/2004   c                3/1/2004
1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

Use function INTCK with option "CONTINUOUS" to get the number of months :

 

data want;
set have;
months = intck("MONTH", proc_date, hosp_date, "CONTINUOUS");
run;

proc sort data=want; by months id proc_date; run;

proc print data=want; 
by months; id months;
var id proc_date  proc_type   hosp_date;
run;
PG

View solution in original post

2 REPLIES 2
PGStats
Opal | Level 21

Use function INTCK with option "CONTINUOUS" to get the number of months :

 

data want;
set have;
months = intck("MONTH", proc_date, hosp_date, "CONTINUOUS");
run;

proc sort data=want; by months id proc_date; run;

proc print data=want; 
by months; id months;
var id proc_date  proc_type   hosp_date;
run;
PG
lillymaginta
Lapis Lazuli | Level 10

Thank you! 

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

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
  • 2 replies
  • 1492 views
  • 1 like
  • 2 in conversation