Excel 2002 : How to sum range ?

M

Mr. Low

Hi,

I have the folowing table:

A B C
1 Days Code Amount
2 1 K23 840.70
3 5 K23 840.70
4 14 P41 720.60
5 22 P41 111.00
6 120 G28 140.00
7 240 G24 720.60
8 360 L78 100.00
9 52 L78 100.00
10 68 K96 720.60
11 14 M24 100.00
12 450 C20 100.00
13 280 C20 100.00
14 68 K47 720.60

I wish to sum up amount in column C based the range of the days in column A
as follows:

1. days is greater or equeal to 0 but less or equeal 250
2. days is greater or equeal to 251 but less or equeal 350
3. days is greater than 351

Can I use SUMIF formula or a Pivot Table or Advance Filter ?

What are the 3 formulas ?

Thanks

Low
 
J

Jacob Skaria

Using SUMIF the three formulas are as below...

=SUMIF(A:A,"<250",C:C)
=SUMIF(A:A,">250",C:C)-SUMIF(A:A,">350",C:C)
=SUMIF(A:A,">350",C:C)
 
J

Jacob Skaria

Using SUMIF the three formulas are as below...

=SUMIF(A:A,"<250",C:C)
=SUMIF(A:A,">250",C:C)-SUMIF(A:A,">350",C:C)
=SUMIF(A:A,">350",C:C)
 
E

Eduardo

Hi,
In one column lets say from D1 to D3 emter the three options, then in cell
E1 for the first option enter

=sumproduct(--($A$1:$A$100<=250),$C$1:$C$100)

in E2 enter
=SUMPRODUCT(--($A$1:$A$100>250),--($A$1:$A$100<=350),$c$1:$c$100)

in E3 enter

=sumproduct(--($A$1:$A$100>350),$C$1:$C$100)

if this helps please click yes, thankls
 
E

Eduardo

Hi,
In one column lets say from D1 to D3 emter the three options, then in cell
E1 for the first option enter

=sumproduct(--($A$1:$A$100<=250),$C$1:$C$100)

in E2 enter
=SUMPRODUCT(--($A$1:$A$100>250),--($A$1:$A$100<=350),$c$1:$c$100)

in E3 enter

=sumproduct(--($A$1:$A$100>350),$C$1:$C$100)

if this helps please click yes, thankls
 

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

Top