Someone hands you a workbook and asks for the number by noon. Do not trust it yet. A handed-down spreadsheet hides stale calculations, typed-over formulas, and references that quietly drifted. Run this checklist before you rely on a single cell.
Run these top to bottom the first time you open an inherited workbook.
You believe a cell should compute =A1+B1. The result is wrong, or it
will not update when you change A1. Before you assume the data is bad, work down the
likely causes. Most are about the workbook, not the math.
A colleague says “this cell is just A1 plus B1, but the total is wrong.” In the box, list every cause you can think of and how you would check each one. Then ask the tutor to review your list; it will tell you what you missed.
Half of what makes an inherited workbook hard to read is that its formulas point at bare cell rectangles. Excel Tables fix that, and prevent a whole class of the bugs the checklist hunts for.
| A plain range | A named range | An Excel Table (Ctrl+T) | |
|---|---|---|---|
| How a formula reads | =SUM(C2:C5000) | =SUM(Revenue) | =SUM(sales[revenue]) |
| Grows with data | No, you re-point it by hand | Only if you redefine it | Yes, automatically |
| Formula fills down | Manual, can drift | Manual | Auto, every row identical |
| Built-in filter / totals | No | No | Yes |
Select the cells, type a name in the Name Box (top-left, beside the
formula bar), press Enter. Now =SUM(Revenue) works anywhere. Manage them
under Formulas → Name Manager, which is also where you find the
stale or broken names a previous author left behind.
sales[revenue] says what it is; C2:C5000 does not.SUM never silently misses the new rows, the most common inherited-workbook error.When you inherit a workbook of bare ranges, converting the core data to a Table is often the single highest-value cleanup you can make.