Sumproduct question

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Hello,

I have this forumal:

=SUMPRODUCT((A5)*(N5="JS"))
easy enough this works fine.

My question is how on earth can I include another variable in this
formula? I would like the resulting value of this formula to be
divided by 2 if cell BU5 equals the number 1.

Any ideas?

Thanks,

Chris
 
Maybe...
=(SUMPRODUCT(A5*(N5="JS"))) / (if(bu5=1,2,1))

or dropping the =sumproduct() <it isn't necessary>
=(A5*(N5="JS")) / (if(bu5=1,2,1))

0r even:

=(A5*(N5="JS")) / (1+(bu5=1))
 

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

Similar Threads

Can SUMPRODUCT include an *? 2
Sumproduct 5
Excel Sumproduct 0
Sumproduct 9
Sumproduct to divide 3
Sumproduct; two conditions; no list 6
SUMPRODUCT again! 5
Sumproduct formula needed 2

Back
Top