SUMIF, IF ?

S

Steve

I have this formula:
=SUMIF($B116:$B124,"V",S116:S124)

In Q116:Q124, I have various numbers, such as 1300, 1400, 1500.

What can I add to the above formula to get the result for only the rows that
have 1300 in the Q116:Q124 range.


Thanks,

Steve
 
J

Jacob Skaria

Hi Steve

Try

=SUMPRODUCT(--($B116:$B124="V"),--($Q116:$Q124=1300),S116:S124)

If this post helps click Yes
 
D

David Billigmeier

You can use this formula, commit with CTRL+SHIFT+ENTER instead of just Enter,
as it's an array formula:

=SUM(IF(($B116:$B124="V")*($Q116:$Q124=1300),S116:S124,""))
 

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