View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
bpeltzer
 
Posts: n/a
Default calculating total in a range of numbers

If, for example, your data is in column A, then
=sumif(a:a,"=20",a:a)-sumif(a:a,"50",a:a) should get it. BTW, this formula
would INCLUDE the values 20 and 50 since your example included it in the sum.

"Joe K" wrote:

I would like to calculate the sum of all values that are greater than 20 and
less 50 in the following data set. Can anyone give me the formula for this
computation.

5
5
19
20
22
25
45
51
60

This is what I am after but with a larger data set. 20+22+25+45 = 112