0Pricing
Excel Formulas Academy · Lesson

Dragging the Fill Handle

Copy a formula across rows and columns with the small fill square.

Dragging the Fill Handle is a free Excel Formulas Academy lesson on CoddyKit — lesson 1 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Excel Formulas Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

What Is the Fill Handle?

Once you write a formula, you rarely want to retype it for every row. The fill handle lets you copy a formula across many cells in seconds.

Select a cell and look at its bottom-right corner. You will see a tiny green square. That square is the fill handle. When you hover over it, your cursor changes from a thick white plus to a thin black plus.

Dragging that black plus copies the formula to wherever you drag.

A Sample Worksheet

Imagine a simple order sheet. Column A has quantities and column B has unit prices. You want column C to show the total for each row.

  • A2 = 3, B2 = 10
  • A3 = 5, B3 = 4
  • A4 = 2, B4 = 25

In C2 you write a formula to multiply quantity by price. You only want to type it once, then fill it down to C3 and C4.

=A2*B2

Writing the First Formula

Click cell C2 and type =A2*B2, then press Enter. The cell shows 30 (3 times 10).

This single formula is your template. The fill handle will copy its pattern down the column, not just the number 30. That is the key idea: you are copying the recipe, not the result.

=A2*B2

Dragging It Down

Click C2 again so it is selected. Move your mouse to the small square at the bottom-right corner until the cursor becomes a thin black plus.

Now click and hold, drag straight down to C4, and release.

Excel and Google Sheets instantly fill C3 and C4 with copied formulas. C3 becomes 20 and C4 becomes 50. You wrote one formula and got three correct answers.

=A3*B3

Double-Click to Auto-Fill

Dragging is fine for a few rows, but tedious for hundreds. There is a faster trick.

Select C2, then double-click the fill handle. The formula fills down automatically, stopping where the data in the neighboring column (column A or B) ends.

This is the go-to method for long lists. No scrolling, no precise dragging. The spreadsheet detects the bottom of your data and fills exactly that far.

=A2*B2

Filling Across Columns

The fill handle works sideways too. Suppose row 1 holds monthly budgets in B1, C1, D1 and you want each multiplied by 1.1 in row 2.

Type the formula in B2, then drag the fill handle to the right across C2 and D2.

Each cell gets its own copy, pointing at the column directly above it. Filling right shifts the column letters; filling down shifts the row numbers.

=B1*1.1

Copy and Paste Does the Same Thing

The fill handle is just a friendly shortcut. You can get identical results with copy and paste.

  • Click C2 and press Ctrl+C (Cmd+C on Mac).
  • Select C3:C4.
  • Press Ctrl+V (Cmd+V).

The formula is copied and adjusts for each row exactly as dragging would. Use whichever method feels natural.

=A2*B2

Fill With the Keyboard

You can also fill without touching the mouse. Select the cell with your formula plus the empty cells below it, all in one selection. For example, highlight C2:C4 with C2 holding the formula.

Then press Ctrl+D to fill down, or Ctrl+R to fill right.

These shortcuts copy the top-left formula into the rest of the selection, adjusting references along the way.

=A2*B2

What Actually Gets Copied

When you fill, the spreadsheet copies the formula's structure, not its literal text. The formula =A2*B2 really means "multiply the two cells just to my left."

Drag it down one row and that meaning becomes =A3*B3. The relationship stays the same; the addresses shift to match the new position.

This automatic shifting is what makes the fill handle so powerful, and it is the topic of the next lesson.

=A4*B4

A Real Example: A Running Total

Suppose column B has daily sales. You want column C to show the running total. In C2 set the first day equal to its sale, then in C3 add the day's sale to the total above.

Write the formula in C3, then fill it down with a double-click. Every row keeps adding the new day to the prior total, building a clean cumulative column with one filled formula.

=C2+B3

When the Fill Handle Is Hidden

If you cannot find the fill handle, it may be turned off. In Excel, go to File, Options, Advanced and make sure Enable fill handle and cell drag-and-drop is checked.

In Google Sheets the handle is always available; just be sure exactly one cell or range is selected. A handle only appears on a single selection, not on disconnected cells held with Ctrl.

Quick Check

Test what you learned about the fill handle.

Recap: Dragging the Fill Handle

You learned how to copy formulas the fast way:

  • The fill handle is the small square at a cell's bottom-right corner.
  • Drag it down or across to copy a formula; double-click it to auto-fill to the end of your data.
  • Ctrl+D fills down and Ctrl+R fills right with the keyboard.
  • Filling copies the formula's pattern, so references adjust to each new position automatically.

Next you will see exactly how those references adjust as you copy.

Frequently asked questions

Is the “Dragging the Fill Handle” lesson free?

Yes — the full text of “Dragging the Fill Handle” is free to read here on the web, and the Excel Formulas Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Excel Formulas Academy course, upgrade to CoddyKit PRO.

What will I learn in “Dragging the Fill Handle”?

Copy a formula across rows and columns with the small fill square. You practise Excel Formulas Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Excel Formulas Academy?

No prior experience is required. Excel Formulas Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 1 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Dragging the Fill Handle” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Excel Formulas Academy lesson?

Yes. Every Excel Formulas Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Dragging the Fill Handle
  2. How References Adjust as You Copy
  3. Filling Series and Patterns
  4. Fixing Common Copy Mistakes
← Back to Excel Formulas Academy