formula to throw out high number and low number

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

Guest

I have 6 months of actuals and I need to throw out the month and the low
month then take the remain 4 months times 3 to come up with a years total
 
Try this:
=TRIMMEAN(A1:A6,1/6)*12

TRIMMEAN (as used above) removes the highest and lowest values from the
range and averages the remaining values.

Is that something you can work with?
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)
 
Sat, 15 Sep 2007 10:48:01 -0700 from Deb
I have 6 months of actuals and I need to throw out the month and the low
month then take the remain 4 months times 3 to come up with a years total

Assuming they're in A1:A6,

=3*(sum(A1:A6)-min(A1:A6)-max(A1:A6))
 
Yup...it was 2 in my head...1 when I typed it (sheesh!)

Thanks

Ron (XL2003, Win XP)
Microsoft MVP (Excel)
 
I think Deb wants to project the values for the remaining 12 months. The
statistical "Median" should take care of his needs better. than substracting
the min and max values and then multiplying the balance with 3:

=Median(a1:a6)*12

But the result will not be the same as substracting the min and max values
and then multiplying the balance with 3.
 
Sat, 15 Sep 2007 18:32:00 -0700 from Balan
I think Deb wants to project the values for the remaining 12 months. The
statistical "Median" should take care of his needs better. than substracting
the min and max values and then multiplying the balance with 3:

=Median(a1:a6)*12

But the result will not be the same as substracting the min and max values
and then multiplying the balance with 3.

I agree with you that Deb's statistical procedure is questionable.
 

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