How do I use CHOOSE in Excel?
Use CHOOSE when you want to pick a value by index number. Enter Index number, Value 1, Value 2 in that order, then add optional arguments when needed.
Returns a value from a list by index.
CHOOSE(index_num, value1, [value2], ...)index_num
RequiredEnter a numeric value.
value1
RequiredEnter a text value (wrap with quotes when needed).
value2
OptionalEnter a text value (wrap with quotes when needed).
Use CHOOSE to return the 2nd option (1: "High", 2: "Low").
| # | ALearner ID | BName | CScore | DResult |
|---|---|---|---|---|
| 2 | U001 | Tanaka | 82 | |
| 3 | U002 | Sato | 67 | |
| 4 | U003 | Suzuki | 91 | |
| 5 | U004 | Takahashi | 55 | |
| 6 | U005 | Ito | 78 | |
| 7 | ||||
| 8 |
How to Use (Formula)
=CHOOSE(2, "High", "Low")Result
Low
Use CHOOSE when you want to pick a value by index number. Enter Index number, Value 1, Value 2 in that order, then add optional arguments when needed.
Use the "Start Function Practice" button to jump straight into CHOOSE drills.
The main arguments are Index number, Value 1, Value 2. Start with the required ones, then add optional arguments if needed.