Create complex conditions using nested IF statements.
You are assigning grades based on a complex grading scale with multiple cutoffs. Create grade categories in column C: A (90+), B (80-89), C (70-79), D (60-69), and F (<60) using nested IF functions to accurately reflect student performance.
Solve without hints for +5 XP
This is the grid you start with. Cell references in the task — B6, C2 — point at the row numbers and column letters below.
| A | B | C | |
|---|---|---|---|
| 1 | Student | Score | Grade |
| 2 | John | 95 | |
| 3 | Mary | 87 | |
| 4 | Tom | 76 | |
| 5 | Sarah | 65 | |
| 6 | Mike | 58 |
Nested IF functions allow for complex multi-condition logic by embedding IF statements within each other, evaluating conditions sequentially.