Best on desktop
The spreadsheet workspace needs more room than this screen offers. Switch to a laptop for the full experience.
You're a retail analyst implementing the ops team's new discount engine. The discount is composed from three independent dimensions that multiply together — encoded as nested IF/IFS calls in a single formula.
Columns A–D: Order ID, Product Category (Apparel / Tech / Books), Customer Tier (Gold / Silver / Bronze), Order Size (dollars).
Discount-percentage formula:
final_discount_pct = base_rate × tier_multiplier × volume_multiplier
| Component | Apparel | Tech | Books |
|---|---|---|---|
| Base rate | 10 | 5 | 8 |
| Component | Gold | Silver | Bronze |
|---|---|---|---|
| Tier multiplier | 2 | 1 | 0.5 |
| Component | Order > $500 | Otherwise |
|---|---|---|
| Volume multiplier | 1.5 | 1 |
So an Apparel order from a Gold customer over $500 = 10 × 2 × 1.5 = 30%.
Your task:
base × tier × volume in one cell. The straightforward shape is three IFS calls multiplied together — or wrap with LET for readability.Graded cells: E2 (Apparel/Gold/$800 → 30), E3 (Tech/Silver/$200 → 5), E7 (Books/Gold/$300 → 16).