
- MS Excel Basics
- Excel - Home
- Excel - Getting Started
- Excel - Explore Window
- Excel - Backstage
- Excel - Entering Values
- Excel - Move Around
- Excel - Save Workbook
- Excel - Create Worksheet
- Excel - Copy Worksheet
- Excel - Hiding Worksheet
- Excel - Delete Worksheet
- Excel - Close Workbook
- Excel - Open Workbook
- Excel - Context Help
- Editing Worksheet
- Excel - Insert Data
- Excel - Select Data
- Excel - Delete Data
- Excel - Move Data
- Excel - Rows & Columns
- Excel - Copy & Paste
- Excel - Find & Replace
- Excel - Spell Check
- Excel - Zoom In-Out
- Excel - Special Symbols
- Excel - Insert Comments
- Excel - Add Text Box
- Excel - Undo Changes
- Formatting Cells
- Excel - Setting Cell Type
- Excel - Setting Fonts
- Excel - Text Decoration
- Excel - Rotate Cells
- Excel - Setting Colors
- Excel - Text Alignments
- Excel - Merge & Wrap
- Excel - Borders and Shades
- Excel - Apply Formatting
- Formatting Worksheets
- Excel - Sheet Options
- Excel - Adjust Margins
- Excel - Page Orientation
- Excel - Header and Footer
- Excel - Insert Page Breaks
- Excel - Set Background
- Excel - Freeze Panes
- Excel - Conditional Format
- Working with Formula
- Excel - Creating Formulas
- Excel - Copying Formulas
- Excel - Formula Reference
- Excel - Using Functions
- Excel - Builtin Functions
- Advanced Operations
- Excel - Data Filtering
- Excel - Data Sorting
- Excel - Using Ranges
- Excel - Data Validation
- Excel - Using Styles
- Excel - Using Themes
- Excel - Using Templates
- Excel - Using Macros
- Excel - Adding Graphics
- Excel - Cross Referencing
- Excel - Printing Worksheets
- Excel - Email Workbooks
- Excel- Translate Worksheet
- Excel - Workbook Security
- Excel - Data Tables
- Excel - Pivot Tables
- Excel - Simple Charts
- Excel - Pivot Charts
- Excel - Keyboard Shortcuts
- MS Excel Resources
- Excel - Quick Guide
- Excel - Useful Resources
- Excel - Discussion
How to calculate average without max and min values in Excel?
You know how to calculate the normal average function which gives the average value of all the selected cells in an excel sheet. But in this article, you will learn how to calculate the average excluding the min and max values or highest and lowest values from selected numbers as shown below.
You can calculate the average without max and min values in Microsoft excel using the formulas.
Open a Microsoft excel sheet and enter the numbers as per your need as shown in the below screenshot for your reference.

Now you need to enter the below-given formula and then press enter key which can help you to average the range of values without the max and min values or numbers as shown in the below screenshot for your reference.
=(SUM(A2:A12)-MIN(A2:A12)-MAX(A2:A12))/(COUNT(A2:A12)-2)

You can also use the below given formula to calculate the average without the min and max values which gives the same result as the above formula. Kindly find the below given screenshot for your reference.
=TRIMMEAN(A2:A12,2/COUNT(A2:A12))

Note − In the given formula, A2:A12 is the range of numbers that you want to calculate you can also change these numbers as per your need.
The result obtained is the same, 436.5556 as shown in the above screenshots, when you use the above two formulas given formulas in a Microsoft excel sheet.
This is the easiest method and quick method to find the average without a max and min value or highest value or lowest value in a Microsoft excel sheet.
Conclusion
In this tutorial, we used a simple example to demonstrate how you can calculate the average without max and min values using the formulas in an Excel sheet.
- Related Articles
- JavaScript: How to Find Min/Max Values Without Math Functions?
- Average of array excluding min max JavaScript
- Box plot with min, max, average and standard deviation in Matplotlib
- How to get the max/min of visible cells only in Excel?
- Min and max values of an array in MongoDB?
- How to calculate running total /average in Excel?
- Get max and min values of an array in Arduino
- How to calculate average speed from distance and time in Excel?
- How to Average the Absolute Values in Excel?
- How to calculate average between two dates in Excel?
- How to use min and max attributes in HTML?
- Find max and min values in array of primitives using Java
- max() and min() in Python
- How to Average Cells Ignoring Error Values in Excel?
- How to calculate the average rate of change in Excel?
