VLOOKUP only allows you to look up the first occurence of data. What if the first one is not the one I want to extract?
For example:
Name | Age | IQ |
--------------------------------
Bob 15 100
Mary 20 96
Bob 7 110
=VLOOKUP("Bob",A2:C4,3)
I am using VLOOKUP to find BOB and extract his IQ. But VLOOKUP will find the first instance of BOB and return 100 as the result.
I need it to show me the BOB #2 IQ because he is less than 10 years old. I'd like the result to be "110"
Sorry about this lame illustration, does it make sense as to what I am looking for? how would I accomplish this task?
Jake
For example:
Name | Age | IQ |
--------------------------------
Bob 15 100
Mary 20 96
Bob 7 110
=VLOOKUP("Bob",A2:C4,3)
I am using VLOOKUP to find BOB and extract his IQ. But VLOOKUP will find the first instance of BOB and return 100 as the result.
I need it to show me the BOB #2 IQ because he is less than 10 years old. I'd like the result to be "110"
Sorry about this lame illustration, does it make sense as to what I am looking for? how would I accomplish this task?
Jake