Hi Steven,
To do this in a single formula, you can use this array formula:
Code:
=INDEX(A1:A10,SMALL(IF((B1:B10="Vijay"),ROW(B1:B10)-ROW(B1)+1),2))
When you type it into the formula bar you must complete the entry with CTRL+SHIFT+ENTER, not just the usual ENTER. If done correctly then Excel will automatically surround the formula with curly braces { }.
A1:A10 is the the range containing the name you want to return.
B1:B10 is the range containing the name you want to look up against.
"Vijay" is the look up value.
B1 is the first cell in the look up range
B1:B10
2 represents the second match.