Recall & Review
beginner
What does the
LARGE function do in Excel?The
LARGE function returns the nth largest value from a list or range of numbers. For example, =LARGE(A1:A10, 2) gives the 2nd largest number in cells A1 to A10.Click to reveal answer
beginner
What does the
SMALL function do in Excel?The
SMALL function returns the nth smallest value from a list or range of numbers. For example, =SMALL(A1:A10, 3) gives the 3rd smallest number in cells A1 to A10.Click to reveal answer
beginner
How do you find the largest number in a range using
LARGE?Use
=LARGE(range, 1). The number 1 means the largest value. For example, =LARGE(B2:B20, 1) returns the biggest number in B2 to B20.Click to reveal answer
beginner
How do you find the smallest number in a range using
SMALL?Use
=SMALL(range, 1). The number 1 means the smallest value. For example, =SMALL(C1:C15, 1) returns the smallest number in C1 to C15.Click to reveal answer
intermediate
Can
LARGE and SMALL functions handle ties (same numbers)?Yes. If there are duplicate numbers,
LARGE and SMALL count them separately. For example, if the largest number appears twice, =LARGE(range, 1) and =LARGE(range, 2) can both return that same number.Click to reveal answer
What does
=LARGE(A1:A5, 3) return?✗ Incorrect
LARGE returns the nth largest number. Here, n=3 means the 3rd largest.Which formula finds the smallest number in a range?
✗ Incorrect
SMALL(range, 1) returns the smallest number. MIN also works but is different from SMALL which can find other smallest values.If you want the 2nd smallest number in B1:B10, which formula do you use?
✗ Incorrect
SMALL(range, 2) returns the 2nd smallest number.What happens if you use
=LARGE(A1:A5, 6) but the range has only 5 numbers?✗ Incorrect
If n is larger than the number of values,
LARGE returns a #NUM! error.Which function can find the 4th largest value in a list?
✗ Incorrect
LARGE(range, 4) returns the 4th largest value.Explain how to use the
LARGE function to find the top 3 highest scores in a list.Think about changing the second number in LARGE to get different top values.
You got /4 concepts.
Describe the difference between
LARGE and SMALL functions and when you might use each.One finds high values, the other finds low values.
You got /4 concepts.