Create a List by Ranking a List in a different tab?

caravanbutts

New Member
Joined
Sep 22, 2016
Messages
17
Hi

I would like excel to be able to generate a list of student names in rank order from 1-10 in a different tab to the main list that may have 60+ students listed.

For example

TAB1
Time Rank
John 10.23 4
Steve 10.34 5
Mark 9.43 1
Holly 9.87 3
Eva 9.65 2

TAB2
Time Rank
Mark 9.43 1
Eva 9.65 2
Holly 9.87 3

In this example of just gone for top 3.
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Try this (makes use of the existing structure of your sheets)

Where (in both sheets)
Column A contains names
Column B contains Times
Column C contains Rank (Tab1 contains calculated rankings)

In Tab2

In A2 copy down
=INDEX('Tab1'!A:A,MATCH(C2,'Tab1'!C:C,0))

In B2 copy down
=INDEX('Tab1'!B:B,MATCH(C2,'Tab1'!C:C,0))

Enter these values in column C
C2 = 1, C3 = 2.......C11=10
 
Last edited:
Upvote 0
Try this (makes use of the existing structure of your sheets)

Where (in both sheets)
Column A contains names
Column B contains Times
Column C contains Rank (Tab1 contains calculated rankings)

In Tab2

In A2 copy down
=INDEX('Tab1'!A:A,MATCH(C2,'Tab1'!C:C,0))

In B2 copy down
=INDEX('Tab1'!B:B,MATCH(C2,'Tab1'!C:C,0))

Enter these values in column C
C2 = 1, C3 = 2.......C11=10

Thank you so much this is brilliant!!
 
Upvote 0

Forum statistics

Threads
1,215,601
Messages
6,125,758
Members
449,259
Latest member
rehanahmadawan

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