A formula is any cell entry that starts with =. That equals sign tells Excel "calculate this."
A spreadsheet with formulas calculating totals
1=B2 * C2
2│ │ │
3│ │ └─ another cell reference
4│ └───── operator (multiply)
5└──────── the = sign that starts every formula| Operator | Does | Example |
|---|---|---|
+ | Add | =A1+B1 |
- | Subtract | =A1-B1 |
* | Multiply | =A1*B1 |
/ | Divide | =A1/B1 |
^ | Power | =A1^2 |
% | Percent | =A1*5% |
1=125 * 4 ← ❌ breaks when the data changes
2=B2 * C2 ← ✅ updates automaticallyThe whole point of a spreadsheet: change an input, and every formula that references it recalculates instantly.
Excel follows math precedence, not left-to-right:
1. ( ) Parentheses
2. ^ Exponents
3. * / Multiply & Divide
4. + - Add & Subtract
1=10 + 2 * 3 → 16 (multiply first)
2=(10 + 2) * 3 → 36 (parentheses first)When in doubt, add parentheses. =A1+B1/2 halves only B1; =(A1+B1)/2 averages both. Explicit parentheses prevent silent mistakes.
| Error | Meaning |
|---|---|
#DIV/0! | Divided by zero or empty |
#NAME? | Misspelled function/name |
#VALUE! | Wrong data type (math on text) |
#REF! | Reference to a deleted cell |
#N/A | A lookup found nothing |