Excel Choose Function

This guide treats “excel choose 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 =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. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. For “excel choose function”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected formula change, and only then apply the same setup to the full sheet. 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 is what makes a workflow that saves repeating the same clicks every week useful in real work: repeatable, auditable, and not dependent on memory or luck.

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

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. 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. Treat “excel choose 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

  • 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.

Other ways people ask this

This is also commonly searched as “excel function choose” and “how to use choose function in excel”. They describe the identical operation, so you are in the right place no matter how you phrased it.

This guide also answers

  • excel choose formula

Why do people search for this in so many different ways?

Because the same task has many names. “excel function choose”, “how to use choose function in excel” all point at the one operation explained on this page, which is why they all lead here.