two criteria in a vlookup

C

CMAC

how would i do a lookup to return a value if two conditions are met.
instead of =vlookup(a1,d1:h80,2,0) i would like a value to return if a1 and
b1 are matched?
thank you

c
 
P

Peo Sjoblom

It's not clear what you mean, do you want to lookup A1 and B1 in one column
of the lookup table? If so use

=VLOOKUP(A1&B1,D1:H80,2,0)

if not post back

Regards,

Peo Sjoblom
 
C

C Y via OfficeKB.com

I'm too am looking to return a value when 2 criterias are met, not a
combined set of words to make one. I want to look up a1 and then b1 in a
table where it will return xx.

columnA columnB value_to_return
Marketing Director John Doe

lookupA lookupB value_to_return
Marketing Director John Doe
Marketing Manager Joe Doe
 
B

Biff

Hi!

Assume your lookup table is in the range A5:C6.

A1 and B1 are the lookup values.

In C1 enter this array formula with the key combo of
CTRL,SHIFT,ENTER:

=INDEX(C5:C6,MATCH(1,(A5:A6=A1)*(B5:B6=B1),0))

If no match is found #N/A will be returned.

To keep #N/A from being displayed enter this formula, also
an array:

=IF(ISERROR(MATCH(1,(A5:A6=A1)*(B5:B6=B1),0)),"",INDEX
(C5:C6,MATCH(1,(A5:A6=A1)*(B5:B6=B1),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

Top