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.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
Need to figure out the least common multiple of a range of values? It is a snap when you use the LCM function, described ...
Discover MoreWhen working with finances, you often need to know the rate of return on a given investment. The most common type of ...
Discover MoreNeed to sum up different ranges of cells? One of the tools you can use is the handy SUBTOTAL function, 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