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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2180 views
  • 1 like
  • 5 in conversation