BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Sofia2022
Fluorite | Level 6
I currently have data on patients with admission dates and discharge dates, and I want to extract the number of active patients every year. The data contain patients that haven’t been discharged yet, so the discharge date is blank.

For example, 200 patients were active in 2020 and 400 patients in 2122.
1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Calculate start and end values:

data long;
set have;
start = year(admission);
if month(admission) lt 7 then start = start - 1;
end = coalesce(discharge,today());
if month(end) lt 7
then end = year(end) - 1;
else end = year(end);
do year = start to end;
  output;
end;
keep patient_id year;
run;

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

Oh, a time traveler!

For example, 200 patients were active in 2020 and 400 patients in 2122.

Joking aside, what about this:

data long;
set have;
do year = year(admission) to year(coalesce(discharge,today());
  output;
end;
keep patient_id year;
run;

/* next step is necessary if you want to count patients instead of stays */
proc sort data=long nodupkey;
by patient_id year;
run;

proc freq data=long;
tables year;
run;

 

 

Sofia2022
Fluorite | Level 6
Great Kurt. It’s working :). How about if I want to report the output by financial year (July to June) ?? For example, there were 200 active below between July 2020 and June 2021, 600 between July 2021 and June 2022.
Kurt_Bremser
Super User

Calculate start and end values:

data long;
set have;
start = year(admission);
if month(admission) lt 7 then start = start - 1;
end = coalesce(discharge,today());
if month(end) lt 7
then end = year(end) - 1;
else end = year(end);
do year = start to end;
  output;
end;
keep patient_id year;
run;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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