Make list only passed students from all names

kamaruddinjnv

Board Regular
Joined
Mar 14, 2014
Messages
56
I have 40 students name.
I need pick name only passed students in a column rankwise without any gap of row.
 
Looks like the formula in D4 in above post #10 may have gotten cut off:
It is an array formula and must be entered with CTRL-SHIFT-ENTER.
D4=

Code:
[TABLE="width: 1788"]
<colgroup><col width="1788"></colgroup><tbody>[TR]
   [TD="width: 1788"]IFERROR(INDEX($A$2:$A$8,MATCH(SMALL(IF($B$2:$B$8>$E$1,RANK($B$2:$B$8,$B$2:$B$8)+ROW($B$2:$B$8)/1000),ROWS($D$4:D4)),IF($B$2:$B$8>$E$1,RANK($B$2:$B$8,$B$2:$B$8)+ROW($B$2:$B$8)/1000),0)),"")[/TD]
 [/TR]
</tbody>[/TABLE]
 
Upvote 0

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Here is another option.
The formula in post #10 in cell D4 can be used without posting the grade.
The formula below requires that you have a descending column for the grades (cells E4:E9 in this example).

Both of these formulas are array formulas and both must be entered with CTRL-SHIFT-ENTER.
Excel Workbook
ABCDE
1NameGradeGrades above33
2X80
3Y70NameGrade
4Z60N90
5P80X80
6H20P80
7J45Y70
8N90Z60
9J45
10
Sheet
 
Upvote 0
In D4 array formula (CTRL+SHIFT+ENTER)

{=IFERROR(INDEX($A$2:$A$8,LARGE(IF($B$2:$B$8>$E$1,ROW($B$2:$B$8)-ROW($B$1)),ROWS($D$4:D4))),"")}


A
B
C
_____D
E
1
Name
Grade
Grades above
33
2
X
80
3
Y
70
Name
4
Z
60
N
5
P
80
X
6
H
20
P
7
J
45
Y
8
N
90
Z
9
J
10

<tbody>
</tbody>
 
Last edited:
Upvote 0
If I change this formula in E4 <$E$1
For less than data then result came accurate but 0 shows for blank data. How I can blank these cell when data is blank.
 
Upvote 0
Just change my formula to:
Code:
[TABLE="width: 591"]
<colgroup><col width="591"></colgroup>[TR]
   [TD="width: 591"]IFERROR(LARGE(IF($B$2:$B$9<>"",IF($B$2:$B$9<$E$1,$B$2:$B$9)),ROWS($E$4:E4)),"")[/TD]
 [/TR]
[/TABLE]

You can also use this formula for greater than E1
Excel Workbook
ABCDE
1NameGradeGrades above70
2X80
3Y70NameGrade
4Z60Z60
5PJ45
6H20H20
7J45
8N90
9l
Sheet
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,557
Members
449,088
Latest member
davidcom

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