Is there a way to get an average, excluding the lowest number?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to get an average of a set of numbers and either exclude the lowest
number in the set OR make sure that only numbers over 10,000 are in the
average -- does anyone know how to do this?
 
look up the database functions in excel (function wizard-database functions)

DAverage is the most out of the box solution available.
 
=AVERAGE(IF(A1:A5<>MIN(A1:A5),A1:A5))

which is an array formula, so commit with Ctrl-Shift-Enter
 
Thanks Tom... I tried to use DAverage, however I was not successful -- have
you ever used it?
 
If you really mean OR, so if answering the first half of your question is
OK:

=(SUM(YourRange)-MIN(YourRange))/(COUNT(YourRange)-1)

--

Kind Regards,

Niek Otten

Microsoft MVP - Excel
 
One way:

Exclude lowest:

=(SUM(rng)-MIN(rng))/(COUNT(rng)-1)

Exclude <=10000 (array-enter:CTRL-SHIFT-ENTER or CMD-RETURN):

=AVERAGE(IF(rng>10000,rng))
 
Note that if there are more than one instance of the minimum value, then
all of the minimum values will be excluded.

i.e., if all the values in the range are the same, this formula will
return #DIV/0!
 

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

Back
Top