How do I use IFS in Excel?
Use IFS when you want to return different results across multiple conditions. Enter Logical test 1, Value if true 1, Logical test 2 in that order, then add optional arguments when needed.
Evaluates multiple conditions in order.
IFS(logical_test1, value_if_true1, ...)logical_test1
RequiredEnter an expression such as comparison or calculation.
value_if_true1
RequiredEnter a text value (wrap with quotes when needed).
logical_test2
OptionalEnter an expression such as comparison or calculation.
value_if_true2
OptionalEnter a text value (wrap with quotes when needed).
Use IFS to return "A" when cell C2 (Score in column C) is greater than or equal to 90; otherwise return "B" when cell C2 (Score in column C) is greater than or equal to 80.
| # | 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)
=IFS(C2>=90, "A", C2>=80, "B")Result
B
Use IFS when you want to return different results across multiple conditions. Enter Logical test 1, Value if true 1, Logical test 2 in that order, then add optional arguments when needed.
Use the "Start Function Practice" button to jump straight into IFS drills.
The main arguments are Logical test 1, Value if true 1, Logical test 2, Value if true 2. Start with the required ones, then add optional arguments if needed.