calculating the "mean" for a group of numbers

  • Thread starter Thread starter rob
  • Start date Start date
R

rob

I am trying to find the mean for a groud of numbers, but the formula needs to
exclude any number less then 26.

29,64,90,48,25,0,96,65,50,86,99,0,0
 
I have assumed you numbers are in seperate cells. Try this array formula

=AVERAGE(IF(A1:M1>=26,A1:M1))

This is an array formula which must be entered by pressing CTRL+Shift+Enter
'and not just Enter. If you do it correctly then Excel will put curly brackets
'around the formula {}. You can't type these yourself. If you edit the formula
'you must enter it again with CTRL+Shift+Enter.
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 
Back
Top