Excel Choose Formula

If you just need to excel choose formula and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: use =CHOOSE(index_num, value1, value2, …) — it returns the nth item from a list, so =CHOOSE(3, "Low", "Mid", "High") returns "High".

Syntax

=CHOOSE(index_num, value1, [value2], ...)

Arguments

ArgumentDescription
index_numrequiredWhich value to return, from 1 to 254.
value1requiredThe value returned when index_num is 1.
value2, ...optionalFurther values for the higher index positions.

Related functions

IFINDEXIFERROR
Annotated stepsExcel
1

Select the result cell and type =CHOOSE(.

2

Enter the cell or expression that produces a number from 1 upward.

3

List the return values in order, separated by commas — the first corresponds to index 1.

4

Press Enter. If the index can fall outside the list, wrap the whole thing in IFERROR.

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

What this does

CHOOSE picks one value from a list by position. It replaces a chain of nested IFs whenever the condition reduces to a number from 1 to n — quarters from a month number, day names from a weekday number, band labels from a rank. Its arguments can be ranges as well as values, which is what makes the old =SUM(CHOOSE(n, RangeA, RangeB)) idiom for switching data sources work. An index below 1 or above the number of values returns #VALUE!. Where the key is text rather than a number, SWITCH is the better fit. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. Treat “excel choose formula” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected formula shows up while it is still harmless. 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. That turns a workflow that saves repeating the same clicks every week into a method you can reuse, explain, and defend when the workbook leaves your screen.

A worked example

Turning a month number in A2 into a quarter: =CHOOSE(A2, "Q1","Q1","Q1","Q2","Q2","Q2","Q3","Q3","Q3","Q4","Q4","Q4"). Turning a weekday number into a name: =CHOOSE(WEEKDAY(A2), "Sun","Mon","Tue","Wed","Thu","Fri","Sat"). Mapping a SIGN result to a label: =CHOOSE(SIGN(B2)+2, "Down","Flat","Up"). CHOOSE collapses a long IF chain into one readable line wherever the decision is really just "which of these n". 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

Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. 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, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. The short version of “excel choose formula”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • An index of 0, which returns #VALUE! — CHOOSE counts from 1, so add 1 to any zero-based value.
  • Using it where the key is text; SWITCH matches on values rather than positions.
  • Listing fewer values than the index can reach, which errors on the unlisted cases.

Frequently asked questions

What is the difference between CHOOSE and SWITCH?

CHOOSE selects by numeric position; SWITCH matches an expression against a list of possible values. Text keys need SWITCH.

Why does CHOOSE return #VALUE!?

The index is below 1 or above the number of values supplied. Remember it is one-based.

Can CHOOSE return a range?

Yes — its arguments can be ranges, which is how =SUM(CHOOSE(n, RangeA, RangeB)) switches between data sources.