Excel Formula to Average Grades While Dropping the Lowest Score

📅 May 17, 2026 📝 Sarah Miller

Manually recalculating student averages to drop their lowest score is a tedious, error-prone task for busy educators. While standard institutional funding sources rarely budget for premium grading software, utilizing a custom Excel formula grants teachers immediate, automated grading equity at no extra cost. Under the stipulation that students must have completed all key assessments to prevent skewed calculations, implementing a formula like =(SUM(B2:H2)-MIN(B2:H2))/(COUNT(B2:H2)-1) offers a reliable, elegant solution. Below, we outline exactly how to construct and apply this formula to streamline your gradebook efficiency.

Excel Formula to Average Grades While Dropping the Lowest Score

As an educator, designing a grading system that is both fair and motivating is one of your most important tasks. Many instructors choose to drop the lowest grade of a semester to account for a student having a single "off" day, an unexpected illness, or simply a tough transition to a new subject. This practice reduces academic anxiety and often provides a truer reflection of a student's overall understanding of the material.

However, calculating these averages manually for dozens or hundreds of students is an administrative nightmare. Fortunately, Microsoft Excel makes this process incredibly simple once you know the right formulas to use. Whether you are using a classic version of Excel or the latest Microsoft 365, this guide will walk you through the best formulas to average student scores while automatically dropping the lowest grade.

Method 1: The Classic "Sum Minus Min" Formula (Most Compatible)

The most reliable, universally compatible way to calculate an average with the lowest grade dropped is to use basic arithmetic logic. This method works in every version of Excel ever created, from Excel 97 to the modern cloud-based versions.

The mathematical logic is straightforward:

  1. Add up all the student's scores.
  2. Find the student's lowest score (the minimum value).
  3. Subtract that minimum value from the total sum.
  4. Divide the resulting number by the total count of scores minus one.

The Formula Syntax

=(SUM(Range) - MIN(Range)) / (COUNT(Range) - 1)

Step-by-Step Example

Imagine you have a gradebook where a student's quiz scores are recorded in cells B2 through F2 (five quizzes in total). To calculate their average while dropping the lowest score, enter the following formula into cell G2:

=(SUM(B2:F2) - MIN(B2:F2)) / (COUNT(B2:F2) - 1)

Let's break down how Excel processes this formula if a student's scores are 85, 90, 45, 95, and 80:

  • SUM(B2:F2) adds all scores together: 85 + 90 + 45 + 95 + 80 = 395.
  • MIN(B2:F2) identifies the lowest score: 45.
  • Excel subtracts the minimum score from the sum: 395 - 45 = 350.
  • COUNT(B2:F2) counts the total number of quiz grades: 5.
  • Excel subtracts 1 from the count: 5 - 1 = 4.
  • Finally, Excel divides the adjusted sum by the adjusted count: 350 / 4 = 87.5.

Method 2: The LARGE Function with an Array Constant (Best for Fixed Columns)

Another elegant approach is to use the LARGE function combined with the AVERAGE function. This method is particularly useful if you have a fixed number of assignments and want a highly readable formula that doesn't require manual subtraction division.

The LARGE function returns the k-th largest value in a data set. By passing an "array constant" (a list of numbers inside curly brackets) as the second argument, we can tell Excel to return multiple top scores simultaneously, which we then average.

The Formula Syntax

=AVERAGE(LARGE(Range, {1, 2, 3, ... N}))

Where N represents the total number of grades you want to keep. If you have 5 assignments and want to drop the lowest 1, you want to keep the top 4. Therefore, your list of positions is {1, 2, 3, 4}.

Step-by-Step Example

Using our previous example of 5 quizzes in range B2:F2, you would enter this formula:

=AVERAGE(LARGE(B2:F2, {1, 2, 3, 4}))

This tells Excel to find the 1st, 2nd, 3rd, and 4th largest numbers in that range, ignore any other numbers (which naturally excludes the lowest, 5th score), and then calculate the average of those four highest numbers.

Note: In older versions of Excel (Excel 2019 and earlier), you may need to press Ctrl + Shift + Enter after typing this formula to enter it as an array formula. In Microsoft 365 and Excel 2021, you can simply press Enter.

Method 3: The Modern Excel 365 Dynamic Formula (Best for Expanding Gradebooks)

If you are using Microsoft 365, you have access to dynamic array functions like SEQUENCE. This allows you to write a formula that automatically adjusts if you add more columns (quizzes) to your gradebook later in the semester, without having to manually rewrite your array constants.

The Formula Syntax

=AVERAGE(LARGE(Range, SEQUENCE(1, COUNT(Range) - 1)))

How It Works

Instead of hardcoding {1, 2, 3, 4}, the SEQUENCE function dynamically generates this list of numbers based on how many grades actually exist. If there are 8 grades in the row, COUNT(Range) - 1 equals 7. SEQUENCE(1, 7) will automatically generate the array {1, 2, 3, 4, 5, 6, 7}, grabbing the top 7 scores and dropping the lowest one.

Handling Crucial Gradebook Edge Cases

In a real-world classroom, student data is rarely perfect. Students miss exams, join classes late, or earn failing marks. If you do not account for these scenarios, your formulas may return errors or, worse, incorrect grades.

1. Zeroes vs. Blank Cells (The "Missing Grade" Trap)

How you record a missed assignment matters immensely in Excel:

  • Blank Cells: Excel's COUNT, MIN, and SUM functions automatically ignore empty cells. If a student missed Quiz 1 and you leave cell B2 blank, Excel will treat the remaining 4 quizzes as the entire data set. The formula will drop the lowest of those 4 remaining scores, averaging only 3 quizzes. This may artificially inflate the student's grade.
  • Zeroes (0): If a student earns a zero or is penalized with a zero for a missed exam, you must type 0 in the cell. Excel will count this zero as the lowest score, drop it, and correctly average the other 4 completed assignments.

2. Preventing Errors When Grades Are Missing

At the beginning of the semester, you may only have one grade entered. If you try to run a "drop the lowest" formula when only one score exists, COUNT(Range) - 1 will equal 0, resulting in a #DIV/0! (Division by Zero) error.

To prevent this, wrap your formula in an IF statement or an IFERROR function. Here is a robust formula that checks if there are enough grades to drop one before performing the calculation:

=IF(COUNT(B2:F2) > 1, (SUM(B2:F2) - MIN(B2:F2)) / (COUNT(B2:F2) - 1), AVERAGE(B2:F2))

This formula translates to: "If there are more than 1 grades entered, drop the lowest and average. Otherwise, just calculate the normal average of whatever grades are currently there."

A Practical Gradebook Example

Below is a visual representation of how these formulas process different student scenarios in a gradebook spanning 5 quizzes (Columns B through F):

Student Name Quiz 1 Quiz 2 Quiz 3 Quiz 4 Quiz 5 Final Adjusted Average Notes
Alice 90 85 95 100 50 92.5 Drops the 50; averages 90, 85, 95, 100.
Bob 80 80 85 90 95 87.5 Drops one of the 80s; averages 80, 85, 90, 95.
Charlie 75 80 [Blank] 85 90 85.0 Excel ignores the blank. Drops the 75; averages 80, 85, 90.
Diana 90 95 0 85 80 87.5 Drops the 0; averages 90, 95, 85, 80.

Summary: Which Method Should You Use?

  • Use Method 1 (SUM - MIN) if you want a reliable, simple formula that works across all versions of Excel and is easy for colleagues or administrators to understand when sharing files.
  • Use Method 2 (LARGE with constant) if you have a rigid gradebook structure with a fixed number of assignments and prefer not to deal with division operators.
  • Use Method 3 (AVERAGE + LARGE + SEQUENCE) if you are using Microsoft 365 and want a modern, dynamic gradebook that automatically scales as you add more assignments throughout the school year.

By implementing these automated formulas, you can eliminate manual calculations, minimize grading errors, and provide your students with transparent, fair, and encouraging academic feedback.

Disclaimer:
The documents and templates provided on this page are for informational and illustrative purposes only. They do not constitute professional, legal, or financial advice, and should not be relied upon as such. Because individual circumstances and regulatory requirements vary, these materials may not be suitable for your specific needs. We recommend consulting with a qualified professional before adapting or using any of these examples for official or commercial purposes.