Use IFS function for multiple conditions without nesting.
You are calculating shipping costs based on order value, with different thresholds for free shipping and reduced rates. Assign shipping costs based on order value using IFS in column B: >=$200 free, >=$100 $5, >=$50 $10, else $15.
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 | |
|---|---|---|
| 1 | Order Value | Shipping |
| 2 | 25 | |
| 3 | 75 | |
| 4 | 150 | |
| 5 | 300 | |
| 6 | 45 |
IFS function provides a cleaner alternative to deeply nested IF statements when dealing with multiple conditions.