Entering, Editing & Filling Data
Excel Fundamentals
Chapter 2 · Entering, Editing & Filling Data
Chapter 1 covered what a cell can hold and how to get to one. This chapter covers what happens once you're actually there — typing data in, changing your mind and editing it, and, most importantly, getting Excel to extend a pattern for you across dozens or thousands of cells instead of typing every single one by hand. That last skill, more than almost anything else in this course, is what separates someone who fights their spreadsheet from someone who lets it do the tedious part.
Editing a Cell You've Already Filled In
Once a cell has content, there are three ways to change it, and they behave slightly differently:
- Just start typing — this replaces the entire existing content the moment you press a key. Fastest option when the old value is wrong and you're replacing it completely.
- Press F2, or double-click the cell — this puts you into edit mode, cursor placed at the end of the existing content, so you can adjust just part of it rather than retyping everything.
- Click into the formula bar (the wide input field above the grid) — identical result to F2, just clicked into from a different location. Especially useful for long formulas, where editing inside the narrow cell itself is awkward.
While in edit mode, Esc cancels whatever you've changed and restores the cell's previous content — a genuinely useful undo-before-you-commit that many people don't realise exists until they've already fought with Ctrl+Z instead.
The Fill Handle: Excel's Most-Used Time-Saver
Select any cell (or range of cells) and look at the small solid square in the bottom-right corner of the selection — that's the fill handle. Click and drag it, and Excel extends whatever you selected into every cell you drag across. What it does with that extension depends entirely on what you originally selected:
| What you select and drag | What AutoFill produces |
|---|---|
| A single plain number, e.g. "5" | Copies "5" into every cell — no pattern to extend from just one value |
| Two numbers, e.g. "5" then "10" | Continues the detected increment: 15, 20, 25… |
| A recognisable date, e.g. 1/1/2026 | Increments by one day per cell: 1/2/2026, 1/3/2026… |
| A weekday name, e.g. "Monday" | Continues the 7-day cycle: Tuesday, Wednesday… |
| A month name, e.g. "Jan" | Continues the 12-month cycle: Feb, Mar… |
A formula, e.g. =A1*2 | Copies the formula down, but its cell references shift with each row — covered fully in Chapter 3 |
Excel recognises weekday and month names, and simple numeric sequences, as built-in fill series — you're not limited to plain numbers and dates. You can even teach it your own sequence (File → Options → Advanced → Edit Custom Lists) if you regularly work with a fixed, repeating set of labels.
Flash Fill: Pattern Matching From Examples (Ctrl+E)
AutoFill extends a mathematical or calendar pattern. Flash Fill solves a different problem entirely: it looks at an example you type by hand next to your existing data, guesses the general rule behind it, and applies that rule to every other row.
A typical use: column A holds full names like "Grace Hopper." In column B, next to the first row, you type just "Grace" — the first name, typed out by hand as an example. Then either press Ctrl+E, or start typing the first name for row 2 and let Excel suggest the rest in grey preview text, then press Enter to accept it. Flash Fill infers "take the text before the first space" and applies that same rule down the rest of column B automatically.
Undo, Redo, and Deleting Content
A few habits are worth building early, since every later chapter assumes them:
- Ctrl+Z (Undo) and Ctrl+Y (Redo) — Excel keeps a genuinely deep undo history, not just one step back, so don't hesitate to experiment.
- Delete key — clears a selected cell's content entirely, without entering edit mode first.
- Backspace — if a cell is already selected (not in edit mode), Backspace also clears it; but once you're already inside edit mode (after F2 or double-click), Backspace instead deletes just the one character before your cursor, the way it would in any text field.
Hands-On Exercises
In column A, type the number 2 into A1 and 4 into A2. Select both cells and drag the fill handle down to A10. Then, in column B, type just 2 into B1 and drag its fill handle down to B10 (only one cell selected this time). Explain why columns A and B produce different results even though both started with the number 2.
In column A, enter these four full names, one per row: "Ada Lovelace", "Alan Turing", "Grace Hopper", "Katherine Johnson". In B1, type just "Lovelace" (the surname of the first name). Use Flash Fill (Ctrl+E) to fill B2:B4 automatically. Explain what rule Flash Fill most likely inferred from your one example, and what would happen if row 5 was just "Madonna" (a single name, no space).
📄 View solutionType "Monday" into cell A1. Drag its fill handle across to G1 (7 cells total). Then click A1 again, and this time hold Ctrl while dragging across to G1. Describe the difference between the two results, and explain why Ctrl's effect on a weekday name is the opposite of Ctrl's effect on a single plain number (from this chapter's own warning box).
📄 View solutionChapter 2 Quick Reference
- Edit a cell: type to replace entirely; F2 or double-click to edit in place; Esc cancels an in-progress edit
- Fill handle: the small square at a selection's bottom-right corner — drag it to extend a pattern
- One number dragged → copies unchanged; Ctrl + drag flips this to a +1 series
- Two numbers, a date, a weekday, or a month name dragged → continues the detected series automatically
- Flash Fill (Ctrl+E): infers a text-transformation rule from one typed example, then applies it to the rest of the column
- Delete clears a selected cell instantly; Backspace only does the same when the cell isn't already in edit mode