Sumif criteria greater than or less than another cell

  • Follow


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

You can see what I'm trying to do. How do I do it?
0
Reply Utf 1/6/2010 7:02:01 AM

maybe this is what you want

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

-- 


Gary Keramidas
Excel 2003


"Don O" <Don O@discussions.microsoft.com> wrote in message 
news:7AD567CD-0A78-4522-8A24-DFC24E4DC786@microsoft.com...
> SUMIF(A1:A10,>B5,C1:C10)
>
> You can see what I'm trying to do. How do I do it? 

0
Reply Gary 1/6/2010 7:08:41 AM


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 & 

-- 
Jacob


"Don O" wrote:

> SUMIF(A1:A10,>B5,C1:C10)
> 
> You can see what I'm trying to do. How do I do it?
0
Reply Utf 1/6/2010 7:14:01 AM

maybe this is what you want

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



"Don O" wrote:

> SUMIF(A1:A10,>B5,C1:C10)
> 
> You can see what I'm trying to do. How do I do it?
0
Reply Utf 1/6/2010 7:18:01 AM

3 Replies
906 Views

(page loaded in 0.084 seconds)

Similiar Articles:
















7/18/2012 8:42:00 PM


Reply: