VLOOKUP False Problem

B

broadway05

I have a "LOOKUP" statement (without the "false" at the end) which
doesn't always return the exact match (I guess it returns the closest
match). I need an exact match or nothing. When I add "FALSE" to the
end of the statement, Excel won't accept it. So I changed it to
"VLOOKUP" and added the "False" and I get no returns except for "N/A."
Why doesn't the false parameter work for me??

The following returns sometimes-exact responses:
=LOOKUP(D3,'Assign Reps'!C4:C502,'Assign Reps'!D4:D502)

The following returns "N/A:
=VLOOKUP(D3,'Assign Reps'!C4:C502,'Assign Reps'!D4:D502,False)

FYI, "Assign Reps" is my second page (which contains the column I'm
searching). I am writing the formula in a cell on the first page.

Help!!!!
 
N

Niek Otten

Try this:

=VLOOKUP(D3,'Assign Reps'!C4:D502,2,False)

Please let us know the result
 
P

Pete_UK

If you are copying this down the column in your first sheet, you may
need to amend it to:

=VLOOKUP(D3,'Assign Reps'!C$4:D$502,2,False)

Hope this helps.

Pete
 

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

Top