Written by Allen Wyatt (last updated February 15, 2020)
This tip applies to Excel 97, 2000, 2002, and 2003
I remember when I was in junior high school, my algebra teacher (Mr. Jones) would periodically take pity on us and institute a grading plan that was actually quite helpful. Mr. Jones would take a look at all our quiz scores for the grading period, and then throw out the lowest score. (Sometimes I think that is all that got me through his class.)
Using Excel, Mr. Jones could easily have automated the throwing out of the lowest score. For instance, let's say that the quiz scores for the period were in cells B3:B12. Putting the following in cell B13 provides a total for the scores:
=SUM(B3:B12)
This isn't exactly what is wanted, since the lowest score is still figured into the total. To throw out the lowest score, simply change the formula in B13 to the following:
=SUM(B3:B12)-SMALL(B3:B12,1)
The SMALL worksheet function returns, in this case, the lowest score in the range. When that is subtracted from the total, the result is that the lowest score is removed from the mix. You could also use a slightly different formula to remove the lowest score:
=SUM(B3:B12)-MIN(B3:B12)
Either approach will work fine.
(Mr. Jones would have been more impressed with this than he was with my algebra skills.)
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2175) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Throwing Out the Lowest Score.
Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!
Want to chop off everything after a certain point in a number? The TRUNC function can help with this need.
Discover MoreIf you want to add up the contents of a range of cells based on what is contained in a different range of cells, you need ...
Discover MoreNeed to round a value by a power of 10? You can do it by using the ROUND function as described in this tip.
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments