Hi,
I have a list of names in column A and a list of numbers in column Z - which corresponds to the Range named "DaysWorked".
Name: Days Worked:
Bob 10
Bill 7
Rob 7
Tim 5
In a different workbook I want to return the value of the three highest numbers in the Range DaysWorked along with the corresponding Name from column A.
This is what I have:
First Column:
=LARGE(DaysWorked,1)
=LARGE(DaysWorked,2)
=LARGE(DaysWorked,3)
In the column next to it:
=INDEX(Volunteers!$A$4:$A20,MATCH(LARGE(DaysWorked,1),DaysWorked,0))
=INDEX(Volunteers!$A$4:$A21,MATCH(LARGE(DaysWorked,2),DaysWorked,0))
=INDEX(Volunteers!$A$4:$A22,MATCH(LARGE(DaysWorked,3),DaysWorked,0))
This mostly works, but if two people have worked the same amount of days it returns a duplicated name. For the example above it shows:
10 Bob
7 Bill
7 Bill
I've tried to combine the Large and Offset functions using the formula =OFFSET(DaysWorked,LARGE(DaysWorked,2),-25) but this returns the wrong values.
Can anyone fix this or help?
Thanks!!
I have a list of names in column A and a list of numbers in column Z - which corresponds to the Range named "DaysWorked".
Name: Days Worked:
Bob 10
Bill 7
Rob 7
Tim 5
In a different workbook I want to return the value of the three highest numbers in the Range DaysWorked along with the corresponding Name from column A.
This is what I have:
First Column:
=LARGE(DaysWorked,1)
=LARGE(DaysWorked,2)
=LARGE(DaysWorked,3)
In the column next to it:
=INDEX(Volunteers!$A$4:$A20,MATCH(LARGE(DaysWorked,1),DaysWorked,0))
=INDEX(Volunteers!$A$4:$A21,MATCH(LARGE(DaysWorked,2),DaysWorked,0))
=INDEX(Volunteers!$A$4:$A22,MATCH(LARGE(DaysWorked,3),DaysWorked,0))
This mostly works, but if two people have worked the same amount of days it returns a duplicated name. For the example above it shows:
10 Bob
7 Bill
7 Bill
I've tried to combine the Large and Offset functions using the formula =OFFSET(DaysWorked,LARGE(DaysWorked,2),-25) but this returns the wrong values.
Can anyone fix this or help?
Thanks!!