Like SUMIFS, but for multiplication??

E

EricC

I want to multiply two cells in a row that meet multiple criteria from other
cells in that same row (like SUMIFS, but for a product). How can this be
done??

ex: A1 is X, A2 is Y, A3 is 3, A4 is 4

Multiply A3*A4 only if A1=X and A2=Y (both criteria met)

Thanks,

Eric
 
B

BT

Hi Eric

In the cell you want to display the output enter
=IF(AND(A1="x",B1="y"),C1*D1,FALSE) -replace false with whatever you want to
return.
 

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