Sumif criteria greater than or less than another cell

J

Jacob Skaria

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 &
 
Top