Beyond VLOOKUP Clarification

N

nebb

_Example_Table[/U_]
A B C D
1 83 Vermont Doctor Doe
2 120 Connecticut Clerk Jones
3 145 Vermont Nurse Jones
4 202 Indiana Student Jones
5 101 Massachusetts Store Keeper Lee
6 24 Maine Accountant Smith
The above table is sorted on column D.

If , for example, I used the following formula on the above table:
=vlookup( 120,A1:D6,4,false)
the formula would return the name “Jones” found in cell D2

Question: Is there someway that, after using the above vlooku
formula,
(1) To test to see if there are additional entries with the same nam
as returned by the vlookup formula and
(2) For each same name entry, show the information in column C
 
A

Alan Beban

=INDEX($C$1:$C$6,SMALL(IF($D$1:$D$6=VLOOKUP(120,$A$1:$D$6,4),ROW($D$1:$D$6)),ROW(A1)))

aray entered and filled down.

Alan Beban
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top