BookmarkSubscribeRSS Feed
AnandSahu
Calcite | Level 5

Hi All,

How can I find the 3rd highest(all ways) value in a dataset.

Regards

Anand

4 REPLIES 4
Tushar
Obsidian | Level 7

Hi AnandSahu, Below is the example of finding nth highest salary from given input using Proc SQL.

data salary;

input sal;

cards;

23

12

.

45

0

54

-21

43

;

run; 

%let N=3;
proc sql;
select a.sal from salary a where &N= (select count(distinct sal) from salary b where a.sal<=b.sal);
quit;

Regards,

Tushar J

Haikuo
Onyx | Level 15

Proc Rank seems handy:

proc rank data=sashelp.class out=want(where=(rank=3)) descending ties=dense;

var age;

ranks rank;

run;

Haikuo

Rahul_SAS
Quartz | Level 8

this doesn't work.

 

NOTE: The data set WORK.WANT has 0 observations and 6 variables.

Patrick
Opal | Level 21

Have you already searched the communities here. Similar questions have already been asked and answered multiple times.

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!
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
  • 4 replies
  • 2052 views
  • 1 like
  • 5 in conversation