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:
- Look at the Status Bar at the very bottom left of your Excel window. It will say:
Circular References: B10. - Go to the Formulas ribbon tab.
- Click the arrow next to Error Checking $\rightarrow$ Circular References.
- Excel will list the exact cell address. Click it to jump directly to the offending cell.
In Google Sheets:
- Google Sheets displays a red banner: “Circular dependency detected”.
- The formula returns
#REF!with a tooltip: “Result was not automatically expanded, please insert more columns.”
The Classic Mistake: SUM Range Overlap
- Cell
A10Formula:❌ =SUM(A1:A10) - Because cell
A10is 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.