Skip to content
Fixes & Errors

Fix Excel Not Responding

Excel not responding can mean lost work or just an awkward pause. Here is the calm, practical 2026 fix walkthrough that recovers both your file and your patience.

Fix Excel Not Responding

Excel freezing — the title bar showing “Not Responding,” the interface graying out, the cursor turning into the spinning circle — is genuinely disruptive, particularly when it happens mid-entry on important data. The frustrating part is that the cause varies widely: sometimes it’s a calculation that’s simply too heavy for the machine, sometimes it’s a corrupted file, sometimes it’s an add-in crashing in the background, and sometimes it’s something as mundane as a VBA macro that got stuck in a loop. For the bigger picture, our Complete Guide to Fixing Windows, Browser, and Software Errors pulls everything together.

The fastest diagnostic: look at what you were doing when Excel froze. Was it immediately after opening a specific file? After a calculation completed? While pasting a large range? After clicking a specific button or running a macro? The moment of freeze tells you more than any diagnostic tool.

Don’t Wait Too Long Before Force-Quitting

When Excel shows “Not Responding”: give it 2–5 minutes. Excel genuinely does freeze while completing heavy operations — particularly on large spreadsheets with many volatile formulas (INDIRECT, OFFSET, NOW(), TODAY()) — and then unfreezes when the calculation finishes. Killing it during a legitimate calculation loses unsaved changes unnecessarily.

But if 5 minutes have passed with no progress: Task Manager (Ctrl + Alt + Delete) → find Microsoft Excel → End task. Excel’s AutoRecover usually has a recent version of the file — when you reopen Excel, it offers to restore the autosaved version. Check that the AutoRecover settings are configured sensibly: File → Options → Save → Save AutoRecover information every X minutes → set to 5 if it’s higher.

Fix 1: Switch to Manual Calculation

Excel in Automatic calculation mode recalculates every formula in the workbook on every change. On large spreadsheets with thousands of formulas, changing a single cell can trigger a calculation cascade that takes minutes and freezes Excel during the process.

Switch to Manual calculation: Formulas → Calculation Options → Manual. Now Excel only recalculates when you press F9 (calculate everything) or Shift+F9 (calculate the active sheet). Work with the data, then press F9 when you need updated results. For regular workbooks, this makes Excel dramatically more responsive. Switch back to Automatic when the data entry is complete.

Also check for volatile formulas causing the issue: volatile formulas (INDIRECT, OFFSET, RAND, RANDBETWEEN, NOW, TODAY) recalculate on every change regardless of whether the cells they reference have changed. Replacing INDIRECT with direct references, or OFFSET with INDEX, eliminates the volatility and significantly reduces calculation load.

Fix 2: Disable Add-ins

COM add-ins load into Excel’s process at startup and can crash, hang, or conflict with Excel operations — causing Excel to appear frozen when it’s actually waiting for a stuck add-in to respond. Office productivity add-ins, CRM integrations, custom corporate tools, and data analysis add-ins are all candidates.

Disable all add-ins: File → Options → Add-ins → Manage: COM Add-ins → Go → uncheck all → OK → restart Excel. If Excel works without freezing, an add-in was causing it. Re-enable them one at a time — the one that triggers the freeze when enabled is the problem. Update it, remove it, or contact the vendor for a compatible version.

Open Excel in Safe Mode to quickly confirm whether add-ins are the cause: hold Ctrl while clicking the Excel icon (or run excel /safe from Run). Safe Mode disables all add-ins and custom settings. If Excel is stable in Safe Mode but freezes normally, add-ins are confirmed as the issue.

Fix 3: Fix the Spreadsheet

Sometimes the workbook itself is the problem rather than Excel or the system. Common spreadsheet-level causes of freezing:

Named ranges referencing the entire column: A formula like =SUM(A:A) or a named range defined as entire columns forces Excel to reference millions of cells. Replace with specific ranges like =SUM(A1:A10000). This dramatically reduces calculation overhead.

Conditional formatting on entire columns: Similar issue — applying conditional formatting to entire columns (highlight Column A where value > 0) forces Excel to evaluate millions of cells. Restrict conditional formatting to the actual data range.

External links that can’t be updated: If the workbook references other files that have moved, been deleted, or are on a disconnected network drive, Excel freezes trying to update those links on open. Edit → Links → break or update each link, or remove the dependency on external files.

Array formulas calculating on large ranges: Legacy array formulas (entered with Ctrl+Shift+Enter) calculating across large ranges can freeze Excel. Convert to dynamic array functions where possible, or reduce the range they operate on.

Fix 4: Repair the Office Installation

Corrupted Office installation files cause Excel to freeze in ways that don’t respond to workbook-level fixes. A Quick Repair rebuilds Excel’s binary files in about 5 minutes without needing an internet connection:

Settings → Apps → Installed apps → Microsoft 365 (or Microsoft Office) → three-dot menu → Modify → Quick Repair → Repair. After completion, restart and test the problematic workbook. If Quick Repair doesn’t resolve it, Online Repair downloads fresh installation files from Microsoft’s servers and is more thorough — but requires 30–45 minutes and an internet connection.

Fix 5: Check System Resources

Excel not responding while the system is also running low on memory, with high disk or CPU usage from other processes, isn’t an Excel problem — it’s a resource competition problem. Task Manager shows the full picture: if Excel is consuming reasonable resources but total system RAM is at 95%, other applications are starving Excel of the memory it needs to complete calculations.

Close other applications while working in large Excel files. Cloud sync clients (OneDrive, Google Drive) actively syncing during Excel work cause disk contention that slows Excel significantly — pause sync before working on heavy spreadsheets. Antivirus scans running in the background consume CPU that Excel needs for calculations. If possible, schedule resource-intensive background tasks (backups, scans, large downloads) for times when Excel work isn’t happening.

Fix 6: Power Query and External Data Refresh Hangs

Excel freezing specifically during a data refresh — Get & Transform / Power Query pulling data from SQL databases, SharePoint, web sources, or other files — is a network or connection issue rather than Excel performance. The refresh connects to an external source, the source is slow or unreachable, and Excel shows Not Responding while waiting for the connection to time out.

Check: Task Manager → Excel’s memory and CPU during the freeze. If CPU is at near-zero and disk is also quiet, Excel is waiting on a network response rather than computing. Check Data → Queries & Connections → right-click each query → Properties → increase the connection timeout, or check whether the data source is accessible. For SQL connections: verify the server is reachable and the query returns results promptly — a heavy SQL query that takes 5 minutes to run will freeze Excel for exactly that duration.

Fix 7: Update Excel and Windows

Excel freezing bugs get fixed in updates. File → Account → Update Options → Update Now to install any pending Office updates. Also check Windows Update — outdated Windows components can interact poorly with current Excel versions. After updating, test the same workbook that was causing freezes — many update-fixed bugs are in specific calculation engines or rendering paths that affect specific types of spreadsheets.

Our guide on Outlook not opening covers COM add-in conflicts in the Office context — the same add-in diagnostic (File → Options → Add-ins → COM Add-ins) applies identically to Excel, Word, and Outlook, and a bad add-in affecting one Office app often affects others. For the Windows system resource issues that cause Excel to freeze alongside other applications, our Windows 11 high CPU guide covers the background process management that applies here. Microsoft’s Excel performance documentation covers the Excel calculation optimization techniques — minimising volatile formulas, using structured references, and optimising array formula usage for large datasets.

Clipboard and Large Data Operations

Excel freezing specifically when pasting large ranges — copying 50,000 rows and pasting into another sheet — is expected behaviour on machines with limited RAM rather than a bug. Clipboard operations on large data sets require Excel to hold the source data in memory while writing the destination, and on machines with under 8 GB RAM this can push total memory to its ceiling during the paste operation.

The “marching ants” (dotted border around copied cells) indicates active clipboard content that Excel is holding in memory. Pressing Escape clears this from clipboard memory and releases the held data. For very large paste operations: consider splitting the paste into smaller ranges (10,000 rows at a time), using Paste Special → Values to paste without formats (significantly smaller memory footprint), or using Power Query to combine data rather than manual copy-paste operations that rely on the clipboard.

Co-Authoring and OneDrive Sync Hangs

Excel files stored in OneDrive or SharePoint enable real-time co-authoring — multiple people editing simultaneously. The co-authoring sync happens continuously in the background, and when network connectivity is slow or intermittent, AutoSave may stall trying to sync a change. Excel shows “Not Responding” while waiting for the stalled sync to complete or time out.

During co-authoring freezes: check whether the OneDrive icon shows a syncing spinner. If it does, OneDrive is actively syncing and Excel is waiting for the sync to complete. Pausing OneDrive sync (right-click the icon → Pause syncing → 2 hours) while working in Excel stops the continuous background sync that competes with Excel’s save operations. Re-enable sync when finished for the day rather than after each save.

Orphaned COM Add-in Registry Entries

When COM add-ins are incompletely uninstalled, their registry entries persist even after the DLL file is removed. Excel tries to load these orphaned entries at startup, can’t find the DLL file, and hangs briefly trying to handle the failure. With multiple orphaned entries, the cumulative hang becomes noticeable.

View orphaned entries: File → Options → Add-ins → Manage → COM Add-ins → Go. Any add-in showing “Load Behavior: 0” or with a file path pointing to a non-existent DLL is orphaned. Uncheck them and click OK. If they reappear at next startup, their registry entry needs to be deleted manually: Registry Editor → HKEY_CURRENT_USERSoftwareMicrosoftOfficeExcelAddins → find and delete the key for the orphaned add-in. This requires identifying the correct registry key name (usually the add-in’s ProgID) before deleting.

64-bit vs 32-bit Excel

Excel’s 32-bit version has a 2 GB memory limit regardless of how much RAM the machine has — on 32-bit Excel, no matter how many GBs of RAM are installed, Excel can’t use more than 2 GB of it for its own operations. On machines processing very large spreadsheets (hundreds of MB of data), 32-bit Excel consistently hits this ceiling and freezes during memory-intensive operations.

Check: File → Account → About Excel → the version line shows “(32-bit)” or “(64-bit)” at the end. If you’re running 32-bit Excel on a 64-bit Windows machine with more than 8 GB of RAM, switching to 64-bit Excel removes the artificial 2 GB ceiling. Uninstall Office through Settings → Apps, then reinstall the 64-bit version — the installer at office.com defaults to 64-bit when run on 64-bit Windows. Note: some older Excel add-ins are 32-bit only and won’t work with 64-bit Excel — check add-in compatibility before making the switch.

File Corruption Fixes

When a specific Excel file consistently causes freezing but other files work normally, the file itself has corruption. Excel has two built-in options for corrupted files:

Open and Repair: File → Open → navigate to the file → click the dropdown arrow next to Open → “Open and Repair” → choose “Repair.” Excel attempts to reconstruct a readable version of the file.

Extract data: If Repair fails, the same “Open and Repair” dialog has an “Extract Data” option that extracts values and formulas without recreating the full workbook structure. This preserves the data even when the file structure is too corrupted to repair.

For files that can’t be opened at all due to corruption, Excel’s older .xls format is sometimes more recoverable than .xlsx — if the file was saved in .xlsx format, some online services and third-party tools (Stellar Repair for Excel, DataNumen Excel Repair) specialise in .xlsx file structure reconstruction when Excel’s own built-in repair fails. You might also run into Excel Crashes in Windows 11.

Reducing Spreadsheet Complexity

For workbooks that are genuinely too complex for the current hardware — where all the software fixes have been applied but calculation times are still prohibitively long — restructuring the spreadsheet is the path forward. The most impactful structural changes:

  • Replace VLOOKUP with INDEX/MATCH or XLOOKUP — faster and more memory-efficient for large lookup tables
  • Convert formulas to values for historical data that won’t change — right-click the range → Paste Special → Values → removes calculation overhead from completed data
  • Split one large workbook into multiple connected smaller files — the data connections between workbooks use less memory than all data in one file
  • Use Excel Tables (Ctrl+T) for data ranges — structured references in Tables calculate more efficiently than equivalent formulas on unstructured ranges
  • Enable multi-threaded calculation: File → Options → Advanced → Formulas → Enable multi-threaded calculation → use all processors. This allows Excel to use all CPU cores for calculation rather than a single core.
Nikolas Lamprou

Nikolas Lamprou (MSc; GCFR, SC-200, Security+) has been working with computers professionally since 2009 — starting with web development and e-commerce, and moving into cybersecurity over the years. Based in Greece, he brings over 15 years of real-world IT experience to SolveTechToday, where he writes about Windows fixes, software reviews, security tools, and AI applications. His goal is straightforward: cut through the noise and give readers clear, honest guidance on the tech decisions that matter.

Stay Ahead

Fix your next problem before it starts

Get the week's best Windows fixes, software picks, and security guides delivered straight to your inbox. No noise, just solutions.

Press ESC to close · Try "Windows 11" or "Chrome"