Average

R

Ron Rosenfeld

Ron - I guess I missed you. Enjoy - I hope it vacation !

For anyone else that reads this - I have a table of 9 columns and about 30
rows. I have 5 different companies that fill these ranges with prices and I
want the average price - but dropping the lowest.

I'm back. And I did have a good time, thank you.

If you have not solved your problem yet, we can try some more.

What's in each row and column?

Do you need to average by rows? by columns? or by some other determinant?


--ron
 
J

joeu2004

ynissel said:
For anyone else that reads this - I have a table of 9 columns and about 30
rows. I have 5 different companies that fill these ranges with prices and
I want the average price - but dropping the lowest.

I did not follow the entire thread, but based on the summary above,
is there some reason why the following does not satisfy your needs:

=(SUM(A1:I30)-MIN(A1:I30))/(COUNT(A1:I30)-1)

Caveat: This drops only __one__ instance of the lowest value.
If your intent is to drop __all__ instances of the lowest value,
the above does not meet your needs.
 

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