looup help

  • Thread starter Thread starter Miree
  • Start date Start date
M

Miree

I have the following formula

=IF(F4="","",LOOKUP(F4,Instructions!$L:$L,Instructions!$M:$M))

But it returns the M column value matched to the closed L column value how
can i get it to return exact values only
 
Hi,

You could do this

=IF(F4="","",VLOOKUP(F4,Instructions!L:M,2,FALSE))

It will now only return an exact match but if it doesn't dind one it returns
#N/A.

If that's a problem then post back.

Mike
 
this worked great is there a way to get it to return a message rather than N/A?
 

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

Back
Top