View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
rmwarde rmwarde is offline
external usenet poster
 
Posts: 14
Default Finding the top two in a multi page workbook

How do I find the top two numbers in a multipage workbook and link it to
another cell. Example

workbook page 1 workbook page 2
student1 500 student9 150
student2 600 student7 1400
student3 450 student6 300

I need it to find the top two numbers of the two workbook pages and and list
the students name.I used the function below, but can't figure out how to use
multiple classes and still get the name to show not the numbers itself.

=INDEX('PM Kinder'!A5:A19,MATCH(MAX('PM Kinder'!C5:C19 ),'PM
Kinder'!C5:C19,0))

Thanks