BookmarkSubscribeRSS Feed
acros
Calcite | Level 5

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]

2 REPLIES 2
art297
Opal | Level 21

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;

acros
Calcite | Level 5

Awesome! Thank you, Arthur!

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

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