It’s 3:12 PM. You just copied a row from a dashboard showing Q1 sales for Acme Corp, and pasted it into your budget tracker. Instantly, the cell turns #REF! — because the original formula referenced =SUM(B2:B15) in another sheet, and now that sheet isn’t open. Your colleague leans over and says, ‘Just paste values.’ You click Paste Special… and freeze.
The Problem
You don’t need formulas. You need numbers — clean, static, unbreakable numbers. But Excel defaults to pasting everything: formatting, formulas, hyperlinks, even hidden row heights. That’s why your pivot table breaks, your conditional formatting vanishes, or worse — your $47,800 forecast suddenly reads #VALUE! because the source cell was =ROUNDUP(VLOOKUP(…),0) and now references are gone.
Here’s what happens when you copy A1:C5 from a live report and paste normally into a new workbook:
| Cell | What You Copied | What You Get After Normal Paste | Why It’s Bad |
|---|---|---|---|
| A1 | =SUM(Sales!B2:B12) | #REF! | Source sheet missing → error spreads |
| B1 | $32,450.00 | $32,450.00 (but with 14pt Calibri + red fill) | Clashes with your corporate font & color palette |
| C1 | 2024-02-28 | 2/28/2024 (formatted as ‘Feb 28’ + hyperlink to calendar) | Breaks date-based filters in downstream reports |
| A2 | Sarah Chen | Sarah Chen (with data validation dropdown) | Prevents bulk edits later — can’t paste over validation |
| B2 | =IF(A2="Sarah Chen",D2*1.05, D2) | #N/A (because D2 is blank in target) | Formula tries to calculate before you’ve filled supporting columns |
The Solution
Pasting values isn’t hard — it’s just buried under layers of legacy Excel UI. Here’s how to do it right, every time.
- Select and copy your source range — say, A1:C5 on Sheet1.
- Click the destination cell where you want the top-left corner to land — e.g., E1 on Sheet2.
- Press
Ctrl + Alt + V— this opens Paste Special instantly. Don’t reach for the ribbon. - Type
V(for Values), then pressEnter.
That’s it. No mouse. No ribbon hunting. No risk of clicking ‘Formats’ instead of ‘Values’.
Here’s what the same A1:C5 looks like after pasting values only:
| Cell | Result | Data Type | Notes |
|---|---|---|---|
| E1 | 42,178 | Number | Original SUM result, now static |
| F1 | 32450 | Number (no currency format) | Formatting stripped — apply yours cleanly |
| G1 | 45352 | Serial date (2024-02-28) | Use Home > Number > Short Date to reformat |
| E2 | Sarah Chen | Text | No validation, no links, no surprises |
| F2 | 34,125 | Number | Final calculated value — not a formula |
How to paste values only in Excel — the fast way
‘Paste values only’ means stripping *everything*: formulas, formats, comments, validation, hyperlinks, and even merged-cell logic. That’s exactly what Ctrl + Alt + V, then V, does. It doesn’t ask questions. It doesn’t show a dialog box unless you hold Alt too long (then you get the full Paste Special menu). Just V → Enter.
Pro tip: If you’re pasting into a formatted table (like an Excel Table with structured references), paste values into a blank column first — then cut/paste into the table. Otherwise, Excel may auto-expand the table and break column headers.
How to paste value in Excel — the old-school method (and why it fails)
Some still use the ribbon: Home tab → Paste dropdown → ‘Values’. That works — but it’s fragile. Click one pixel off? You get ‘Values & Number Formatting’ instead. Or you accidentally pick ‘Match Destination Formatting’, which keeps formulas but drops colors. Worse: if you’re using Excel Online or Mac Excel, that button moves or disappears.
The keyboard method works everywhere — Windows, Mac (use Cmd + Ctrl + V, then V), and even Excel for iPad with a Bluetooth keyboard.
Going Further
Once you’ve mastered basic value pasting, these variations solve real workflow gaps:
- Paste values + number formatting only: Use
Ctrl + Alt + V→U(for ‘Values and Number Formats’). Keeps decimals, currency symbols, and % signs — but kills formulas and fonts. - Paste values as plain text: Copy from a webpage or email → paste into Excel using
Ctrl + Alt + V→T. Prevents Excel from auto-converting ‘1-15’ into dates or ‘1E2’ into scientific notation. - Replace formulas with their results in-place: Select cells with formulas (e.g., B2:B10), press
Ctrl + C, thenCtrl + Alt + V→V→Enter. Yes — you can paste over the same cells. Excel won’t ask. It just replaces. - Power Query alternative: For recurring imports (e.g., weekly CSV exports), load data via Data > Get Data > From File > From Text/CSV, then disable ‘Enable Load’ on the query. Use ‘Reference’ to build a clean, formula-free version. Paste values becomes unnecessary — the data arrives clean.
Surprising tip: If you paste values into a cell that already has data, Excel overwrites it — but if that cell is part of a merged range, Excel unmerges it silently. Always check before pasting into merged areas.
When NOT to Use This
Pasting values is powerful — but dangerous in these cases:
- You need dynamic updates: If the source data changes daily and your report must reflect it, pasting values breaks the link. Use
=Sheet1!A1instead — or better,XLOOKUPwith a named range. - You’re cleaning data for analysis: Pasting values removes error-checking formulas (e.g.,
=ISBLANK(A2)or=LEN(A2)<3). Keep those active until QA is done. - The source uses volatile functions:
NOW(),TODAY(),RAND()— pasting values freezes them. That’s often good (e.g., audit timestamp), but bad if you need live refreshes. - You’re copying from filtered data: Excel pastes *all* rows — visible and hidden. Filter first, then copy visible cells only (
Alt + ;selects visible cells), then paste values.
And one edge case nobody talks about: if your source range includes array formulas (legacy {=SUM(A1:A5*B1:B5)}), pasting values converts them to single-cell results — losing the array behavior entirely. Check Ctrl + Shift + Enter status before copying.
Keyboard Shortcuts
Memorize these — they’ll save 12+ seconds per paste. All tested in Excel 365 (Windows).
| Action | Shortcut | Notes | Works in Mac? |
|---|---|---|---|
| Open Paste Special | Ctrl + Alt + V |
Hold Ctrl+Alt, then press V | Yes — Cmd + Ctrl + V |
| Paste values only | Ctrl + Alt + V, then V, then Enter |
Fastest path — no mouse | Yes — Cmd + Ctrl + V, then V |
| Select visible cells only (pre-filter) | Alt + ; |
Critical before copying filtered ranges | No — Mac uses Cmd + Shift + Z |
| Paste values + number formatting | Ctrl + Alt + V, then U, then Enter |
Keeps $, %, decimals — drops fonts/colors | Yes |
| Paste as plain text (no auto-format) | Ctrl + Alt + V, then T, then Enter |
Stops Excel from making ‘5-10’ a date | Yes |