BookmarkSubscribeRSS Feed
Lnicholl
Calcite | Level 5

Hi,

 

I have a dataset with patient IDs and some variables such as race, gender, age, etc. I would like to find the minimum age AND the ID associated with that minimum... I can't seem to find an option to do this. Here is what my code looks like:

 

proc means data=mydata min;

     var age;

run;

 

I am open to using a different proc, I just figured I would start with this one. Can anyone help? Thanks!

2 REPLIES 2
art297
Opal | Level 21

proc sql;
create table want as
select *
from sashelp.class (rename=(name=id))
having age eq min(age)
;
quit;

 

HTH,

Art, CEO, AnalystFinder.com

 

Ksharp
Super User
I know Art.T has already given you a smart solution.Proc means also can do it.


proc means data=sashelp.class noprint;
id name;
     var age;
     output out=x min=min_age;
run;
proc print;

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
  • 564 views
  • 1 like
  • 3 in conversation