Error Troubleshooting Last updated: 2026-08-20

How to Find and Fix Circular References in Excel & Google Sheets

Locate circular dependency loops, resolve calculation freezes, and enable iterative calculations when intentional in spreadsheets.

Quick Answer & Formula
Excel Sheets Intermediate
Formulas > Error Checking > Circular References

A Circular Reference occurs when a formula directly or indirectly refers to its own cell (e.g. putting =SUM(A1:A5) inside cell A5). Fix by locating the loop via Formulas > Error Checking > Circular References and adjusting the range.

How to Find and Fix Circular References in Excel & Google Sheets

A Circular Reference occurs when a formula depends on its own result to calculate itself, creating an infinite computation loop that freezes workbook calculations.


🔍 Step-by-Step: How to Locate the Circular Cell

In Microsoft Excel:

  1. Look at the Status Bar at the very bottom left of your Excel window. It will say: Circular References: B10.
  2. Go to the Formulas ribbon tab.
  3. Click the arrow next to Error Checking $\rightarrow$ Circular References.
  4. Excel will list the exact cell address. Click it to jump directly to the offending cell.

In Google Sheets:

  1. Google Sheets displays a red banner: “Circular dependency detected”.
  2. The formula returns #REF! with a tooltip: “Result was not automatically expanded, please insert more columns.”

The Classic Mistake: SUM Range Overlap

  • Cell A10 Formula: ❌ =SUM(A1:A10)
  • Because cell A10 is trying to sum itself, the value changes on every calculation pass.
  • Fix: Change formula to ✅ =SUM(A1:A9).
?

Frequently Asked Questions

When is a Circular Reference intentional in financial modeling?

In complex corporate LBO models, debt balance depends on interest expense, which depends on debt balance. To allow this, enable Iterative Calculation in Excel Options > Formulas > Enable iterative calculation.