Using a list of procedures, I would like to find the number of patients seen each month. I have data that looks like this:
Patient Procedure Type Month Procedure Occured
A Mammogram Jan
A CBE Feb
B Mammogram March
C Mammogram Jan
C CBE Jan
C Ultrasound Feb
What would be the simplest way to get the number of distinct patients seen each month. I want to get this output:
Month Number of Distinct Patients
Jan 2 [Patient A and C]
Feb 2 [Patient A and C]
March 1 [Patient B]
proc sql would be one of many ways:
proc sql;
create table want as
select Month_Procedure_Occured as month,
count(distinct patient) as Number_of_Distinct_Patients
from have
group by Month_Procedure_Occured
;
quit;
Awesome! Thank you, Arthur!
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!
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.