Microsoft KB Archive/46393

From BetaArchive Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.



Function to Compute Average without High and Low Values

Last reviewed: June 3, 1998
Article ID: Q46393



2.X 3.00 4.00 4.00a 5.00 | 2.20 2.21 3.00

WINDOWS                  | OS/2

kbusage The information in this article applies to:

  • Microsoft Excel for Windows, versions 2.x, 3.0, 4.0, 4.0a, 5.0
  • Microsoft Excel for OS/2 versions 2.2, 2.21, 3.0

SUMMARY

The following is a worksheet function to provide an average of a range without the highest or lowest values:

   =( SUM(range)-MAX(range)-MIN(range) ) / (COUNT(range)-2)

Note that the parentheses are critical so that the function is computed in the right order. The following is the same function as above, incorporated into a function macro:

   A1:  HILOAVERAGE
   A2:  =RESULT(1)
   A3:  =ARGUMENT("range",8)
   A4:  =(SUM(range)-MAX(range)-MIN(range))/(COUNT(range)-2)
   A5:  =RETURN(A4)

Note: You must define the macro on the macro sheet, then use a full pathname to the macro sheet on the worksheet. For example:

   =Macro1.xls!HILOAVERAGRE(A1:A8)

By choosing Formula Paste Function, you can paste this function in automatically.



KBCategory: kbusage

KBSubcategory:

Additional words: 5.00 2.0 2.00 2.01 2.1 2.10 2.2 2.20 2.21 3.0
3.00 4.0 4.00


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: June 3, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.