Explanation

In this example, the goal is to extract the top 3 quiz scores for each name from the 5 scores that appear in columns C, D, E, F, and G. In other words, for each name listed, we want the best score, the 2nd best score, and the 3rd best score. This problem can be solved with the LARGE function.

Note: I don’t know why the second argument for LARGE is called “k” . In this article I pretty much ignore that fact and use “n” instead, since “nth” is easier to understand than “kth”.

LARGE function

The LARGE function can be used to return the nth largest value in a set of data. The generic syntax for LARGE looks like this:

=LARGE(range,n)

where n is a number like 1, 2, 3, etc. For example, you can retrieve the first, second, and third largest values like this:

=LARGE(range,1) // first largest
=LARGE(range,2) // second largest
=LARGE(range,3) // third largest

The LARGE function is fully automatic — you just need to supply a range and a number that indicates rank. The official names for these arguments are " array " and " k “. To illustrate, below we use LARGE to get the top 3 scores in column C. The formula in F5, copied down, is:

=LARGE(data,E5)

Data is the named range C5:C16, provided as the array argument, and the value for k (n) comes from column E. As the formula is copied down, it returns the top 3 scores:

Nth largest value - basic example - 1

Here, data is the named range C5:C16, and the value for n comes from column E.

Mixed references

In the worksheet shown at top, we can use LARGE to get the top 3 scores for Hannah like this:

 =LARGE(C5:G5,1) // best score
 =LARGE(C5:G5,2) // 2nd best score
 =LARGE(C5:G5,3) // 3rd best score

The main challenge in this example is to create the syntax needed to copy the formula across the range I5:K16. In the example shown, this is accomplished with the formula in cell I5:

=LARGE($C5:$G5,I$4)

This is a clever use of mixed references that takes advantage of the fact that the numbers 1, 2, and 3 are already in the range I5:K5, so that they can be plugged into the formula directly as n:

  • The value given for array is the mixed reference $C5:$G5. Notice that the columns are locked, but rows are not. This allows the rows to update as the formula is copied down , but prevents columns from changing as the formula is copied across .
  • The value given for k (n) is another mixed reference, I$4. Here, the row is locked so that it will not change as the formula is copied down . However, the column is not locked, allowing it to change as the formula is copied across .

Explanation

In this example, the goal is to retrieve the top 3 scores in column D that appear in a given group, entered as a variable in cell F5. If the group is changed, the formulas should calculate new results. The core of the solution is the LARGE function, which can be used to retrieve the “nth” largest value in a set of data. The challenge is that the LARGE function does not offer any built-in way to apply criteria before calculating a result. This means we need to create our own logic to apply criteria.

There are two basic ways to approach this problem. In the current version of Excel, you can use the FILTER function to apply conditions to data before it is delivered to LARGE. In older versions of Excel, you can use the IF function in an array formula. Both approaches are explained below.

Excel Table

For convenience, all data is in an Excel Table named data in the range B5:D16. Excel Tables are a convenient way to work with data in Excel because they (1) automatically expand to include new data and (2) offer structured references , which let you refer to data by name instead of by address. If you are new to Excel Tables, this article provides an overview . Also see this short video:

LARGE function

The LARGE function is used to return the nth largest value in a set of data like this:

=LARGE(range,n)

where n (k) is a number like 1, 2, 3, etc. For example, you can retrieve the first, second, and third largest values like this:

=LARGE(range,1) // first largest
=LARGE(range,2) // second largest
=LARGE(range,3) // third largest

The challenge in this problem is that LARGE has no built-in way to apply criteria. One way to apply criteria is with the FILTER function, as described in the next section.

LARGE with FILTER

In the current version of Excel, the FILTER function can be used to apply criteria inside of LARGE. This is the approach used in the worksheet shown, where the formula in G8 is:

=LARGE(FILTER(data[Score],data[Group]=$F$5),F8)

Working from the inside out, the FILTER function is configured to extract scores for the group in F5 like this:

FILTER(data[Score],data[Group]=$F$5)

Inside FILTER, array is given as the Score column, and the include argument is provided as an expression that compares each value in the Group column to the value in F5 (“A”). Note that $F$5 is an absolute reference , because we don’t want this reference to change when the formula is copied down column G. Since there are 12 values in C5:C16, the expression returns an array with 12 TRUE and FALSE values like this:

{TRUE;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;FALSE}

The TRUE values indicate rows where the group equals “A”. This array is used by FILTER to retrieve matching data. The result from FILTER is an array that contains the 6 values in group “A”:

{90;83;74;87;79;72}

These values are provided to the LARGE function as the array argument. The second argument, k , comes from cell F8:

=LARGE({90;83;74;87;79;72},F8)
=LARGE({90;83;74;87;79;72},1)
=90

In cell G8, the result is 90, the (first) largest score in group A. As the formula is copied down, the value for k changes and LARGE returns the second and third best scores in group A.

LARGE with IF

In Legacy Excel , the FILTER function does not exist so we do not have a dedicated function to filter values by group. Instead, we can use a traditional array formula based on the IF function :

=LARGE(IF(data[Group]=$F$5,data[Score]),F8)

Note: this is an array formula and must be entered with control + shift + enter in Legacy Excel .

In this formula, the IF function serves the same purpose as the FILTER function above: it “filters” the values by group. Since we are running a logical test on 12 separate values in the Group column (C5:C16), we get an array that contains 12 results like this:

{90;FALSE;83;FALSE;74;FALSE;87;FALSE;79;FALSE;72;FALSE}

Notice that only values in group A make it into the array. The values in group B become FALSE when they fail the logical test. This array is returned directly to the LARGE function as the array argument. The value for k comes from cell F8:

=LARGE({90;FALSE;83;FALSE;74;FALSE;87;FALSE;79;FALSE;72;FALSE},F8)
=LARGE({90;FALSE;83;FALSE;74;FALSE;87;FALSE;79;FALSE;72;FALSE},1)
=90

LARGE automatically ignores the FALSE values and returns the largest number in the remaining values, which is 90. As the formula is copied down, the value for k changes and LARGE returns the second and third largest values in group A.

Multiple criteria

To apply multiple criteria, you can extend the formula with boolean logic . With FILTER, the generic formula looks like this:

=LARGE(FILTER(data,(criteria1)*(criteria2),n)

Where criteria1 and criteria2 are expressions to test specific conditions.

In older versions of Excel, you can use the same idea with the IF function like this:

=LARGE(IF((criteria1)*(criteria2),values),n)

For more information on using Boolean logic in array formulas, see the video below.

Video: Boolean operations in array formulas