vlookup help

F

Frank Kabel

Hi
first: you should try to explain your problem in plain text. Most
people won't open attachments :)

To your problems: Just enter the 4th parameter of the VLOOKUP function
to look for exact matches. So change
=VLOOKUP(A17,A25:C27,3)
to
=VLOOKUP(A17,A25:C27,3,0)

and
=VLOOKUP(A17,A25:C27,2)
to
=VLOOKUP(A17,A25:C27,2,0)
 
L

L. Howard Kittle

Hi Mangesh,

The code in cell can be changed to this to do what you want.

=IF(ISNA(VLOOKUP(A17,A25:C27,3,0)),"No such code",VLOOKUP(A17,A25:C27,3,0))

HTH
Regards,
Howard
 
L

L. Howard Kittle

I should say the FORMULA, not CODE.

LHK

L. Howard Kittle said:
Hi Mangesh,

The code in cell can be changed to this to do what you want.

=IF(ISNA(VLOOKUP(A17,A25:C27,3,0)),"No such code",VLOOKUP(A17,A25:C27,3,0))

HTH
Regards,
Howard
 

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