In Excel: select the formula cell and drag the fill handle down or across; use $ signs such as $A$1 when part of the reference must stay fixed.
Enter the formula in the first row or column.
Double-click or drag the fill handle to copy it through adjacent rows.
Press F4 while editing a reference to add $ signs where needed.
Use Paste Special ▸ Formulas when you want formulas without source formatting.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
Copying a formula repeats the logic while Excel adjusts relative cell references. A formula in C2 such as =A2*B2 becomes =A3*B3 when filled down to C3. Absolute references with dollar signs stay fixed, mixed references lock only the row or column, and Paste Special ▸ Formulas copies the formula without copying formatting. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. For “dragging excel formulas”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected formula change, and only then apply the same setup to the full sheet. When this is a ribbon command, the selection matters more than the button: confirm the range, apply the command, then spot-check the output before saving. That is what makes a calculation you can defend to a CFO or an auditor useful in real work: repeatable, auditable, and not dependent on memory or luck.
A worked example
C2 contains =A2*B2 for quantity times price. Drag the fill handle from C2 to C20 and Excel writes =A3*B3, =A4*B4 and so on. If every row must multiply by a tax rate in F1, write =A2*B2*$F$1 before filling down so the F1 reference does not move. Fast, correct formula copying is core spreadsheet work. It turns one tested row into a reliable model and prevents subtle reference drift across hundreds of rows. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.
In Google Sheets
Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. The short version of “dragging excel formulas”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.
Common mistakes
- Forgetting absolute references, so lookup tables, rates or assumptions shift while copying.
- Copying formatting along with formulas and accidentally changing the report style.
- Filling into rows with gaps, where double-clicking the fill handle may stop early.
- Pasting formulas over existing manual overrides without checking dependencies.
Frequently asked questions
How do I copy a formula without changing references?
Use absolute references like $A$1, or copy the formula text from the formula bar when you need an exact duplicate.
How do I copy only formulas?
Copy the cells, then use Paste Special ▸ Formulas.
What does F4 do in a formula?
It cycles a selected reference through A1, $A$1, A$1 and $A1.