complex vlookup search

  • Thread starter Thread starter keith0628
  • Start date Start date
K

keith0628

I have a seven column matrix that I'm trying to return a value afte
checking the values of the first six columns. I figure I have to nes
vlookup statements, but I don't have a clue how to
 
Hi

One way is to use SUMPRODUCT:
=SUMPRODUCT((A2:A1000="ab")*(B2:B1000="zx")*(C . . . .)*(D. . . .)*(E . .
..)*(F . . .)*(G2:G1000))
A couple of points about this function. You cannot use full columns as
ranges (A:A) and each range in each set of brackets must cover the same
number of cells.
 

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