ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   sumif with or< condition (https://www.excelbanter.com/excel-worksheet-functions/140666-sumif-condition.html)

Will Fleenor

sumif with or< condition
 
I have 6 numbers in cells a1..a6. Some are positive and some are negative.
I would like to total up only the numbers that are 20000 or <-20000.
This formula works for
=SUMIF(A1:A6,""&20000,A1:A6)
but this formula will not work:
=SUMIF(A1:A6,or(""&20000,A1:A6,"<"&-20000),A1:A6 )
What is wrong with the last formula. It always evaluates to 0.

Thanks Will



Pete_UK

sumif with or< condition
 
You can only have one condition with SUMIF. Try this:

=SUMIF(A1:A6,""&20000,A1:A6)+SUMIF(A1:A6,"<"&-20000,A1:A6)

Hope this helps.

Pete

On Apr 27, 1:39 am, "Will Fleenor" wrote:
I have 6 numbers in cells a1..a6. Some are positive and some are negative.
I would like to total up only the numbers that are 20000 or <-20000.
This formula works for
=SUMIF(A1:A6,""&20000,A1:A6)
but this formula will not work:
=SUMIF(A1:A6,or(""&20000,A1:A6,"<"&-20000),A1:A6 )
What is wrong with the last formula. It always evaluates to 0.

Thanks Will




Barb Reinhardt

sumif with or< condition
 
I got it to work with this:

=SUM(IF(ABS(A1:A6)20000,A1:A6))

Activate with CTRL SHIFT ENTER

"Will Fleenor" wrote:

I have 6 numbers in cells a1..a6. Some are positive and some are negative.
I would like to total up only the numbers that are 20000 or <-20000.
This formula works for
=SUMIF(A1:A6,""&20000,A1:A6)
but this formula will not work:
=SUMIF(A1:A6,or(""&20000,A1:A6,"<"&-20000),A1:A6 )
What is wrong with the last formula. It always evaluates to 0.

Thanks Will




RagDyeR

sumif with or< condition
 


=Sumif(A1:A6,"20000")+Sumif(A1:A6,"<-20000")


--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Will Fleenor" wrote in message
...
I have 6 numbers in cells a1..a6. Some are positive and some are negative.
I would like to total up only the numbers that are 20000 or <-20000.
This formula works for
=SUMIF(A1:A6,""&20000,A1:A6)
but this formula will not work:
=SUMIF(A1:A6,or(""&20000,A1:A6,"<"&-20000),A1:A6 )
What is wrong with the last formula. It always evaluates to 0.

Thanks Will




RagDyeR

sumif with or< condition
 
OR this:

=SUMPRODUCT(((A1:A62)+(A1:A6<-2))*A1:A6)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Ragdyer" wrote in message
...


=Sumif(A1:A6,"20000")+Sumif(A1:A6,"<-20000")


--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Will Fleenor" wrote in message
...
I have 6 numbers in cells a1..a6. Some are positive and some are
negative. I would like to total up only the numbers that are 20000 or
<-20000.
This formula works for
=SUMIF(A1:A6,""&20000,A1:A6)
but this formula will not work:
=SUMIF(A1:A6,or(""&20000,A1:A6,"<"&-20000),A1:A6 )
What is wrong with the last formula. It always evaluates to 0.

Thanks Will






Mike

sumif with or< condition
 
=SUMIF(A1:A6,"20000",A1:A6)+SUMIF(A1:A6,"<-20000",A1:A6)

"Will Fleenor" wrote:

I have 6 numbers in cells a1..a6. Some are positive and some are negative.
I would like to total up only the numbers that are 20000 or <-20000.
This formula works for
=SUMIF(A1:A6,""&20000,A1:A6)
but this formula will not work:
=SUMIF(A1:A6,or(""&20000,A1:A6,"<"&-20000),A1:A6 )
What is wrong with the last formula. It always evaluates to 0.

Thanks Will




RagDyeR

sumif with or< condition
 
Of course, add the 0's:

=SUMPRODUCT(((A1:A620000)+(A1:A6<-20000))*A1:A6)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Ragdyer" wrote in message
...
OR this:

=SUMPRODUCT(((A1:A62)+(A1:A6<-2))*A1:A6)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Ragdyer" wrote in message
...


=Sumif(A1:A6,"20000")+Sumif(A1:A6,"<-20000")


--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Will Fleenor" wrote in message
...
I have 6 numbers in cells a1..a6. Some are positive and some are
negative. I would like to total up only the numbers that are 20000 or
<-20000.
This formula works for
=SUMIF(A1:A6,""&20000,A1:A6)
but this formula will not work:
=SUMIF(A1:A6,or(""&20000,A1:A6,"<"&-20000),A1:A6 )
What is wrong with the last formula. It always evaluates to 0.

Thanks Will








RagDyeR

sumif with or< condition
 
One mo<g

=SUM(SUMIF(A1:A6,{"20000","<-20000"}))

--

HTH,

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

"Ragdyer" wrote in message
...
Of course, add the 0's:

=SUMPRODUCT(((A1:A620000)+(A1:A6<-20000))*A1:A6)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Ragdyer" wrote in message
...
OR this:

=SUMPRODUCT(((A1:A62)+(A1:A6<-2))*A1:A6)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Ragdyer" wrote in message
...


=Sumif(A1:A6,"20000")+Sumif(A1:A6,"<-20000")


--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Will Fleenor" wrote in message
...
I have 6 numbers in cells a1..a6. Some are positive and some are
negative. I would like to total up only the numbers that are 20000 or
<-20000.
This formula works for
=SUMIF(A1:A6,""&20000,A1:A6)
but this formula will not work:
=SUMIF(A1:A6,or(""&20000,A1:A6,"<"&-20000),A1:A6 )
What is wrong with the last formula. It always evaluates to 0.

Thanks Will









Bob Phillips

sumif with or< condition
 
Yet one more

=SUMPRODUCT(--(ABS(A1:A20)2000),A1:A20)

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"RagDyeR" wrote in message
...
One mo<g

=SUM(SUMIF(A1:A6,{"20000","<-20000"}))

--

HTH,

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

"Ragdyer" wrote in message
...
Of course, add the 0's:

=SUMPRODUCT(((A1:A620000)+(A1:A6<-20000))*A1:A6)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Ragdyer" wrote in message
...
OR this:

=SUMPRODUCT(((A1:A62)+(A1:A6<-2))*A1:A6)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Ragdyer" wrote in message
...


=Sumif(A1:A6,"20000")+Sumif(A1:A6,"<-20000")


--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit
!
---------------------------------------------------------------------------
"Will Fleenor" wrote in message
...
I have 6 numbers in cells a1..a6. Some are positive and some are
negative. I would like to total up only the numbers that are 20000 or
<-20000.
This formula works for
=SUMIF(A1:A6,""&20000,A1:A6)
but this formula will not work:
=SUMIF(A1:A6,or(""&20000,A1:A6,"<"&-20000),A1:A6 )
What is wrong with the last formula. It always evaluates to 0.

Thanks Will












All times are GMT +1. The time now is 10:59 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com