Sumif not criteria

C

CCrew2000

I'm trying to sum a column of data "B", but only if column "A" does not equal
X.
 
D

doublew

I'm having the same problem. I tried Domenic's suggestion but didn't work -
any others?
 
D

doublew

I should also maybe add that I'm trying to use a cell reference as my
criteria - does this make a difference?

I'm trying to do =SUMIF(C122:C127,"<>$C$2",D122:D127) but it just sums
everything, without taking into account the criteria.
 
R

RagDyeR

It's a little different when using a cell reference:

=SUMIF(C122:C127,"<>"&$C$2,D122:D127)

--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


I should also maybe add that I'm trying to use a cell reference as my
criteria - does this make a difference?

I'm trying to do =SUMIF(C122:C127,"<>$C$2",D122:D127) but it just sums
everything, without taking into account the criteria.
 
D

doublew

That worked perfectly, thanks so much!

RagDyeR said:
It's a little different when using a cell reference:

=SUMIF(C122:C127,"<>"&$C$2,D122:D127)

--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


I should also maybe add that I'm trying to use a cell reference as my
criteria - does this make a difference?

I'm trying to do =SUMIF(C122:C127,"<>$C$2",D122:D127) but it just sums
everything, without taking into account the criteria.
 
Top