The expiry date isn't stored anywhere — you build it from a purchase date and a length in months.
You run the returns desk at a hardware store. A customer wants to know if their drill is still under warranty, but the file only has the purchase date and how many months of cover it came with — nobody stores the expiry date itself. Work out the expiry date for each item in column D.
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 | D | |
|---|---|---|---|---|
| 1 | Item | Purchase Date | Warranty (months) | Expiry Date |
| 2 | Cordless drill | 1/15/2026 | 12 | |
| 3 | Table saw | 3/10/2026 | 24 | |
| 4 | Impact driver | 6/22/2026 | 6 |
DATE(YEAR(B2),MONTH(B2)+C2,DAY(B2)) works because DATE's month argument isn't capped at 12 — pass it 1+12=13 and it treats that as month 1 of the following year, which is exactly the carry a warranty needs when a 12-month term crosses a year boundary. Pulling the purchase date apart with YEAR, MONTH and DAY and folding the warranty length into just the month piece before handing all three back to DATE does the month arithmetic in a single step, without ever converting to a day count and back.