Name Range with three requirements

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Excel 2003

This is the formula I have:
=SUMIF((INDEX(QM2S1,,2)),"2-MAKE READY"*INDEX(QM2S1,,3,B2),INDEX(QM2S1,,28))

What I want it to do is - if the second column of range QM2S1 = 2-MAKE
READY, and the third column of range QM2S1 = B2 (date), then sum the 28th
column of range QM2S1.

I've tried both SUMIF (no result), and SUMPRODUCT (# VALUE) result.

TIA,
Carole O
 
You're multiplying text by something...
try:
=SUMPRODUCT((INDEX(QM2S1,,2)="2-MAKE
READY")*(INDEX(QM2S1,,3)=B2)*INDEX(QM2S1,,28))
 
Bob -

Thanks soooooo much! That did it. I never would have thought of your
solution.

Gratefully,
Carole O
 
try naming the ranges refered to in your equations and use a sumproduct like
=sumproduct(--(range2="2-MAKE READY"),--(range3=$B$2),range 28)
(I have not been able to make a index inside a Sumproduct work)
 

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