Sumif criteria greater than or less than another cell

  • Thread starter Thread starter Don O
  • Start date Start date
D

Don O

SUMIF(A1:A10,>B5,C1:C10)

You can see what I'm trying to do. How do I do it?
 
maybe this is what you want

=SUMPRODUCT((A1:A10>B5)*(C1:C10))
 
Try

=SUMIF(A1:A10,">" & B5,C1:C10)

Since B5 is a cell reference you need to combine the text string ">" with
the cell reference using &
 

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