formula to rank selected range of numbers ignoring the blank

dhananjaywalke

Board Regular
Joined
Jun 26, 2006
Messages
60
formula to rank selected range of numbers ignoring the blank if any.

I have 29 numbers in a column.

I want to rank them 1 to 5. But if any of the 29 numbers are zero then formula ranks them as 1 & then proceed to rank 2 3 4. I want formula to ignore zero or blank & rank minimum non zero as 1st.

Could anybody help me?

Thanks
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Assuming that A2:A30 contains the data, try...

B2, copied down:

=IF(A2<>0,SUMPRODUCT(--($A$2:$A$30<>0),--(A2>$A$2:$A$30))+1,"")

Or are you looking for a Top 5 list?
 
Upvote 0
Yes Domenic

I want top five

also worst 5 out of these number.

i want to rank then & i dont want the number which is top 1 or worst 1
 
Upvote 0
The following will return a Top N list, where 0's and the Top 1 are ignored. Assuming that A2:A30 contains the data...

B2: 5

(This indicates that you'd like a Top 5 list. Change this as desired.)

C2:

=SUM(IF(A2:A30<>0,IF(ISNUMBER(MATCH(A2:A30,SMALL(IF(A2:A30<>0,A2:A30),ROW(INDEX(A:A,2):INDEX(A:A,B2+1))),0)),1)))

...confirmed with CONTROL+SHIFT+ENTER.

D2, copied down:

=IF(ROWS($D$2:D2)<=$C$2,SMALL(IF($A$2:$A$30<>0,$A$2:$A$30),ROWS($D$2:D2)+1),"")

...also confirmed with CONTROL+SHIFT+ENTER.

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,214,943
Messages
6,122,380
Members
449,080
Latest member
Armadillos

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top