Stop Doing X — Try This Instead: Do Nothing in Excel

Why does your formula suddenly recalculate when you click away? Why does pressing Enter change a value you meant to leave alone? Why does Excel insist on updating something you explicitly told it not to touch?

Quick Answer

"Do nothing in Excel" means deliberately preventing automatic calculation, formula evaluation, or cell updates — and it’s not about laziness. It’s about control. You do this by toggling Calculation Mode to Manual (Alt+M+X+M), using apostrophes to convert formulas to text (e.g., '=SUM(A1:A5) in B2), or wrapping logic in IF(FALSE, ...) stubs that never execute.

All the Methods

MethodStepsBest ForLimitations
Manual Calculation ModeAlt+M+X+M → select Manual → press EnterLarge models where recalcs cause lag or unintended side effectsAll formulas stop updating until you force F9 — including volatile ones like NOW() or RAND()
Apostrophe PrefixType '=SUM(B2:B6) in C2 — Excel treats it as literal textPreserving formula syntax for documentation or templatesNo calculation ever occurs — even if you later remove the apostrophe manually, it stays text unless re-edited
IF(FALSE, …) WrapperEnter =IF(FALSE,SUM(B2:B6),"-") — always returns "-"Stubbing out logic during development without errorsStill parses and holds references — can break if source cells are deleted
Circular Reference + Iteration OffEnable iteration (Alt+M+X+I), then enter =A1 in A1 — but *disable* iteration again after; value freezesLocking a single cell's displayed value mid-workflowDangerous if misapplied — causes #VALUE! if iteration is accidentally left on
Paste Values OnlyCopy cells → right-click → Paste Special → Values (or Alt+E+S+V)Converting live outputs to static snapshots before sharingIrreversible without Undo (Ctrl+Z); loses links, formatting, and formulas
Named Range with Static RefFormulas tab → Define Name → Name: StaticTotal, Refers to: =12750 (no cell refs)Hardcoding values that look like dynamic resultsNot truly 'doing nothing' — it calculates once at definition, then holds

Method 1 Deep Dive

Let’s say you’re building a quarterly forecast for Acme Corp. Your model pulls live data from external sources — but during client review, you need the numbers to stay fixed, even if backend sheets refresh. You don’t want to paste values (too destructive), and you can’t risk accidental F9.

Here’s what we do: switch to Manual Calculation. Press Alt+M+X+M. You’ll see “Manual” appear in the status bar at the bottom. Now go to cell D10 and type =SUM(C2:C8). It shows 0 — because Excel hasn’t calculated yet. Press F9 once, and it evaluates. But now, no amount of editing elsewhere triggers recalc — not clicking, not typing, not saving. You control when it happens.

Sample data in C2:C8:

CellValue
C2$2,480
C3$3,120
C4$1,950
C5$2,730
C6$1,320
C7$2,200
C8$1,500

Sum = $15,300 — but only after you press F9. Before that? It sits there, inert. (Trust me, I learned this the hard way during a board presentation where my charts updated mid-slide.)

Method 2 Deep Dive

The apostrophe trick is deceptively simple — and wildly underused. Say you’re drafting a proposal for Sarah Chen at NexaTech. You want to show a placeholder formula like =VLOOKUP(E2,Products!A:D,4,FALSE) in cell F2, but you *don’t* want it to run — Products tab isn’t ready, and you’ll get #N/A everywhere.

Type '=VLOOKUP(E2,Products!A:D,4,FALSE) into F2. The leading apostrophe tells Excel: “treat everything after this as plain text.” It displays the full formula — no evaluation, no error, no dependency tracking. You can copy it down to F3:F10, and each cell holds its own literal string.

Here’s the counterintuitive part: if you double-click F2 later and delete just the apostrophe, Excel *won’t* auto-convert it to a live formula. You must also press Enter or Tab to confirm the edit — otherwise, it stays text. That trips up everyone the first time.

Real-world example — these are actual entries from a sales deck draft (cells F2:F6):

CellDisplayed Content
F2'=VLOOKUP(E2,Products!A:D,4,FALSE)
F3'=INDEX(Inventory!B:B,MATCH(E3,Inventory!A:A,0))
F4'=IF(E4>1000,"High","Standard")
F5'=TEXT(TODAY(),"mmm dd, yyyy")
F6'=CONCATENATE("Q",ROUNDUP(MONTH(TODAY())/3,0))

None calculate. None break. All survive Save/Close/Reopen. And yes — they still format like text (left-aligned, no formula bar indicator).

Cheat Sheet

ActionShortcut / StepsWhen to Use It
Toggle Manual CalcAlt+M+X+M → arrow to Manual → EnterBefore presenting, testing, or working with volatile functions
Freeze formula as textType ' before =... (e.g., '=SUM(A1:A5))Drafting templates, documenting logic, avoiding #REF! during dev
Force one-time calcF9 (recalc all) or Shift+F9 (recalc active sheet)After manual mode is set and you need *just this* update
Paste values onlyAlt+E+S+V (or right-click → Paste Special → Values)Sharing final reports — removes all formulas permanently
Lock current resultCopy cell → Edit → Paste Special → Values → OKPreserving one number (e.g., $14,820 in D12) while changing inputs above
Sarah Mitchell

Sarah Mitchell

Sarah has 12 years of experience covering Microsoft 365 productivity tools and enterprise software workflows. She specializes in Excel automation and SharePoint integration.