Lookup problems

  • Thread starter Thread starter Rose Davis
  • Start date Start date
R

Rose Davis

I am trying to use lookup using a vector and array. My lookup is in column
A500 thru A550. I need to locate the information in Column D1 thru D800 and
return the result from Column F1 thru F800. If nothing is found I need it
to return the result of 0. I havetried many times with no results. What to
do now.
Rose
 
Hi!

So you're looking for an exact match?

Try this:

=IF(COUNTIF(D$1:D$800,A500),VLOOKUP(A500,D$1:F$800,3,0),0)

Biff
 

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