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/2004each 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/2004during 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
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;
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;
Thank you!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.