Excel Small Function

This guide treats “excel small function” the way busy spreadsheet users actually want it: answer first, then the reasoning. It is written for Excel but calls out every place Google Sheets differs, and the platform toggle at the top switches all shortcuts between Windows and Mac so nothing here assumes the keyboard you are not on.

Exact answer

In Excel: use =SMALL(array, k) — it returns the kth smallest value, so =SMALL(B2:B100, 2) gives the second-lowest number.

On this page8

Syntax

=SMALL(array, k)

Arguments

Argumentrequired / optionalDescription
arrayrequiredThe range to rank.
krequiredWhich position from the bottom: 1 is the smallest.

Related functions

LARGEMINRANK
Annotated stepsExcel
1

Select the result cell and type =SMALL(.

2

Select the range of numbers, then a comma.

3

Enter the position from the bottom — 1 for the smallest.

4

Anchor the range with $ before filling down so every row ranks the same set.

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

SMALL is the mirror of LARGE: it returns the kth smallest value, with k=1 equivalent to MIN. Beyond bottom-n lists, it has a second and less obvious use — combined with IF it extracts the row numbers of every match, which is the classic pre-dynamic-array way to return multiple lookup results. In modern Excel, FILTER does that far more simply, but the SMALL idiom is what you will find in older workbooks and it still works everywhere. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “excel small function”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

Delivery times in C2:C400: =SMALL(C2:C400, 1) is the fastest and =SMALL(C2:C400, 3) the third fastest. The worst-performing three, listed downward: =SMALL($C$2:$C$400, ROW()-1) filled down. Ignoring zeros when they mean "not measured": =SMALL(IF(C2:C400>0, C2:C400), 1). SMALL is the bottom-n counterpart to LARGE, and its IF variant is the pattern behind most pre-FILTER multiple-match formulas you will inherit. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

In Google Sheets

If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. Treat “excel small function” as a small building block rather than a chore. Once the inputs sit in their own cells and the formula reads from them, the same setup answers a dozen related questions with a tweak, and Excel keeps every dependent figure current as the data changes. The tool above is there so you can rehearse and verify before committing anything to a real workbook; the steps and worked example are there so the logic sticks. Get it right once and it stops costing you time — it starts saving it, every time the question comes back around.

Common mistakes

  • Including zeros or blanks that mean "no data", which then occupy the bottom positions and hide the real minimum.
  • A k outside the range of available values, which returns #NUM!.
  • Using the old SMALL-with-IF idiom for multiple matches when FILTER is available and far clearer.

Frequently asked questions

How do I get the bottom 3 values?

=SMALL($range, 1) through =SMALL($range, 3), or fill the k argument down three rows.

How do I ignore zeros?

Filter them inside the argument: =SMALL(IF(range>0, range), 1), or use =MINIFS(range, range, ">0") in modern Excel.

Why does SMALL return #NUM!?

k is less than 1 or greater than the count of numbers in the range.