calculating the "mean" for a group of numbers

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
 
M

Mike H

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.
 
D

David Biddulph

=AVERAGE(IF(A1:M1>=26,A1:M1)) as an array formula (control, shift, enter)
 

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