A total is the first thing anyone asks a spreadsheet for.
The weekly sales sheet lands on your desk with the total row still empty. Put the total of all four products in B6.
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 | Product | Sales |
| 2 | Cordless drill | 1240 |
| 3 | Extension lead | 385 |
| 4 | Safety goggles | 156 |
| 5 | Work gloves | 227 |
| 6 | Total |
Typing =B2+B3+B4+B5 gives the same answer today and breaks the moment a fifth product is added. SUM takes a range, so the formula keeps meaning "everything in this column" rather than "these four cells I happened to pick".